.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.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;
}
.box-container {
  width: calc(100% - .8rem);
  margin: 0 auto;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
body {
  font-size: 16px;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  background: #000;
}
html.ban {
  overflow: hidden;
  height: 100vh;
}
.rl {
  writing-mode: tb-rl;
  writing-mode: vertical-lr;
}
@font-face {
  font-family: "mb";
  src: url('../fonts/MontserratBold.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "light";
  src: url('../fonts/SOURCEHANSANSCN-EXTRALIGHT.OTF');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "regular";
  src: url('../fonts/SOURCEHANSANSCN-REGULAR.OTF');
  font-weight: normal;
  font-style: normal;
}
.mb {
  font-family: "mb";
}
.light {
  font-family: "light";
}
.medium {
  font-family: "medium";
}
.regular {
  font-family: "regular";
}
.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;
  --fs15: 15px;
  --fs16: 16px;
  --fs18: 18px;
  --fs20: 20px;
  --fs22: 22px;
  --fs24: 24px;
  --fs28: 28px;
  --fs30: 30px;
  --fs36: 36px;
  --fs40: 40px;
  --fs48: 48px;
}
.phone-nav {
  display: none;
}
.lang {
  position: absolute;
  right: 0.6rem;
  z-index: 10;
  top: 0.36rem;
  text-align: right;
}
.lang a {
  display: block;
  line-height: 22px;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lang a.on {
  font-size: 14px;
  color: #fff;
}
.lang span {
  background: url(../img/line.jpg) no-repeat;
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.content,
.desc {
  text-align: justify;
}
.content img,
.content input[type="image"] {
  width: 100%;
  max-width: 100%;
  height: auto!important;
  display: block;
  margin: 0 auto;
}
.index .header-wrapper {
  background-color: #000;
}
.header-wrapper {
  position: fixed;
  top: 0;
  z-index: 20;
  background-color: #101010;
  width: 100%;
}
.header-wrapper .box-container {
  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 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 0.6rem;
  align-items: center;
}
.header-wrapper .logo-box {
  width: 1.38rem;
}
.header-wrapper .logo-box a {
  display: block;
  width: 100%;
}
.header-wrapper .logo-box img {
  display: block;
  width: 100%;
}
.header-wrapper .searchbtn {
  position: relative;
  width: 0.2rem;
  height: 0.2rem;
}
.header-wrapper .searchbtn.on .search {
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  opacity: 0;
  visibility: hidden;
}
.header-wrapper .searchbtn.on .close {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.header-wrapper .searchbtn .close {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  margin-left: -0.2rem;
  margin-top: -0.2rem;
  cursor: pointer;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.65);
  -webkit-transform: scale(0.65);
  -moz-transform: scale(0.65);
  -ms-transform: scale(0.65);
  -o-transform: scale(0.65);
}
.header-wrapper .searchbtn svg {
  width: 0.4rem;
  height: 0.4rem;
}
.header-wrapper .search {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  background-image: url(../img/search.png);
}
.pc-nav-box {
  flex: 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 */
  justify-content: flex-end;
}
.pc-nav-box a {
  display: block;
  position: relative;
  font-size: var(--fs18);
  line-height: 0.6rem;
  color: #999999;
  margin-right: 0.36rem;
  transition: color 0.35s ease;
  -webkit-transition: color 0.35s ease;
  -moz-transition: color 0.35s ease;
  -ms-transition: color 0.35s ease;
  -o-transition: color 0.35s ease;
}
.pc-nav-box a:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: all 0.38s ease;
  -webkit-transition: all 0.38s ease;
  -moz-transition: all 0.38s ease;
  -ms-transition: all 0.38s ease;
  -o-transition: all 0.38s ease;
}
.pc-nav-box a.on,
.pc-nav-box a:hover {
  color: #efefef;
}
.pc-nav-box a.on:after,
.pc-nav-box a:hover:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.search-form {
  left: 0;
  top: 0.6rem;
  position: fixed;
  height: calc(100vh - 0.6rem);
  width: 100%;
  z-index: 110;
  background: rgba(0, 0, 0, 0.9);
  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;
  display: none;
  /* input placeholder  */
}
.search-form.one {
  animation: fadeIn 0.8s ease;
  display: table;
}
.search-form.one .form {
  display: block;
  animation: fadeInUp50 0.8s ease;
}
.search-form.one.out {
  display: none;
  animation: fadeOut 0.8s ease;
}
.search-form.one.out .form {
  display: none;
}
.search-form .box {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.search-form .form {
  position: relative;
  width: 10.12rem;
  margin: 0 auto;
}
.search-form .text {
  width: 100%;
  line-height: 0.6rem;
  font-size: 0.44rem;
  color: #fff;
  font-weight: 700;
  background: none;
  padding-bottom: 0.12rem;
  padding-right: 1rem;
  border-bottom: 1px solid #fff;
}
.search-form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #4e4e4e;
  font-size: 0.44rem;
}
.search-form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #4e4e4e;
  font-size: 0.44rem;
}
.search-form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #4e4e4e;
  font-size: 0.44rem;
}
.search-form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #4e4e4e;
  font-size: 0.44rem;
}
.search-form a {
  position: absolute;
  right: 0;
  top: 0.15rem;
  z-index: 10;
  display: block;
}
.search-form a img {
  width: 0.3rem;
  display: block;
}
@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(1);
  }
}
@keyframes mzoomIn {
  0% {
    transform: translateY(-1.5rem);
    -webkit-transform: translateY(-1.5rem);
    -moz-transform: translateY(-1.5rem);
    -ms-transform: translateY(-1.5rem);
    -o-transform: translateY(-1.5rem);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}
@keyframes mzoomOut {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  100% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -ms-transform: scale(0.4);
    -o-transform: scale(0.4);
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (min-width: 1024px) {
  .lang a:hover {
    color: #fff;
  }
  .lang a:hover span {
    background-size: 100% 1px;
    background-position: 0 100%;
  }
}
@media screen and (max-width: 1004px) {
  .lang {
    right: 0.3rem;
    top: 0.3rem;
  }
  .lang a {
    line-height: 22px;
    font-size: 12px;
  }
  .header-wrapper {
    position: fixed;
  }
  .header-wrapper .box-container {
    height: 1.2rem;
  }
  .header-wrapper .logo-box {
    width: 2.4rem;
  }
  .header-wrapper .searchbtn {
    width: 0.36rem;
    height: 0.36rem;
  }
  .header-wrapper .searchbtn .close {
    margin-left: -0.36rem;
    margin-top: -0.36rem;
  }
  .header-wrapper .searchbtn svg {
    width: 0.72rem;
    height: 0.72rem;
  }
  .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;
  }
  .pc-nav-box {
    display: none;
  }
  .search-form {
    top: 1.2rem;
    height: calc(100vh - 1.2rem);
    /* input placeholder  */
  }
  .search-form .form {
    width: 100%;
    padding: 0 0.4rem;
  }
  .search-form .text {
    line-height: 0.8rem;
    font-size: var(--fs20);
    padding-bottom: 0.1rem;
  }
  .search-form ::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #4e4e4e;
    font-size: var(--fs20);
  }
  .search-form :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #4e4e4e;
    font-size: var(--fs20);
  }
  .search-form ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #4e4e4e;
    font-size: var(--fs20);
  }
  .search-form :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #4e4e4e;
    font-size: var(--fs20);
  }
  .search-form a {
    top: 0.2rem;
    right: 0.4rem;
  }
  .search-form a img {
    width: 0.3rem;
  }
  .p_h {
    height: 1.2rem;
  }
}
.page-box {
  padding: 1.2rem 0;
}
.mt {
  margin-top: 1.1rem;
}
.goods-box {
  position: relative;
}
.goods-box ul {
  list-style-type: none;
  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;
}
.goods-box .swiper-slide,
.goods-box li {
  width: calc(100% / 3);
}
.goods-box .swiper-slide:hover .pic img,
.goods-box li:hover .pic 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);
}
.goods-box .swiper-slide:hover .info,
.goods-box li:hover .info {
  opacity: 1;
  visibility: visible;
}
.goods-box .swiper-slide:hover .title,
.goods-box li:hover .title,
.goods-box .swiper-slide:hover p,
.goods-box li:hover p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.goods-box .swiper-slide a,
.goods-box li a {
  position: relative;
  display: block;
}
.goods-box .pic img {
  transition-duration: 2s;
}
.goods-box .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  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;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  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;
}
.goods-box .title,
.goods-box p {
  text-align: center;
  width: 60%;
  margin: 0 auto;
  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;
}
.goods-box .title {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #fff;
  font-weight: 700;
  transform: translateY(0.4rem);
  -webkit-transform: translateY(0.4rem);
  -moz-transform: translateY(0.4rem);
  -ms-transform: translateY(0.4rem);
  -o-transform: translateY(0.4rem);
}
.goods-box p {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #999999;
  max-height: 1.04rem;
  margin-top: 0.2rem;
  transform: translateY(-0.4rem);
  -webkit-transform: translateY(-0.4rem);
  -moz-transform: translateY(-0.4rem);
  -ms-transform: translateY(-0.4rem);
  -o-transform: translateY(-0.4rem);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.goods-box .caption-box {
  position: relative;
}
.goods-box .caption-box .brief {
  padding-bottom: 0;
}
.goods-box .btns {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  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;
}
.goods-box .swiper-btn {
  position: relative;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: 1px solid #fff;
  transform: none;
  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;
}
.goods-box .swiper-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: scale(0.85);
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.goods-box .swiper-btn svg {
  display: block;
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.goods-box .swiper-btn svg path {
  fill: #fff;
}
.goods-box .prev {
  left: 0;
  margin-right: 0.2rem;
}
.goods-box .next {
  right: 0;
}
.goods-box .next svg {
  transform: rotateY(180deg);
}
.goods-box .next svg path {
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.page-title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 0.7rem;
}
.page-title:after {
  content: "";
  width: 0.33rem;
  height: 0.03rem;
  margin: 0.18rem auto 0;
  display: block;
  background: #7f7f7f;
}
.contact-wrapper {
  padding-bottom: 0!important;
}
.contact-wrapper .main {
  position: relative;
}
.contact-wrapper .main .title {
  font-size: var(--fs30);
  line-height: 0.36rem;
  letter-spacing: 2px;
  color: #ffffff;
  font-family: "light";
  margin-bottom: 0.36rem;
}
.contact-wrapper .main .info {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  z-index: 10;
  width: 360px;
  height: calc(100% - 0.6rem);
  background: #000;
  padding: 0.5rem 0.44rem;
  border-top-right-radius: 0.6rem;
}
.contact-wrapper .main p,
.contact-wrapper .main .brief {
  font-family: "light";
  line-height: 0.3rem;
  letter-spacing: 1px;
  color: #fff;
}
.contact-wrapper .main p {
  font-size: var(--fs20);
  margin-bottom: 0.07rem;
}
.contact-wrapper .main ul {
  list-style-type: none;
}
.contact-wrapper .main ul li {
  padding-bottom: 0.2rem;
  margin-bottom: 0.34rem;
  border-bottom: 1px solid #fff;
}
.contact-wrapper .main ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.contact-wrapper .main ul img {
  width: 0.2rem;
  margin-bottom: 0.18rem;
}
.contact-wrapper .main .brief {
  font-size: var(--fs16);
}
.contact-wrapper .qrcodes {
  background: #101010;
  padding: 1rem 0 1.2rem;
}
.contact-wrapper .qrcodes 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 */
  justify-content: center;
}
.contact-wrapper .qrcodes li {
  text-align: center;
  list-style-type: none;
  margin-right: 1rem;
}
.contact-wrapper .qrcodes li:last-child {
  margin-right: 0;
}
.contact-wrapper .qrcodes .pic {
  width: 1.88rem;
}
.contact-wrapper .qrcodes p {
  font-family: "light";
  font-size: var(--fs24);
  line-height: 0.3rem;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 0.15rem;
}
.contact-wrapper .box-2 .page-title {
  margin-bottom: 0.28rem;
}
.contact-wrapper .brands {
  position: relative;
}
.contact-wrapper .brands 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;
  list-style-type: none;
  width: 100%;
  padding: 0 1rem;
}
.contact-wrapper .brands li {
  width: calc(100% / 8);
  margin-top: 0.15rem;
}
.contact-wrapper .brands li:nth-child(-n+8) {
  margin-top: 0;
}
.contact-wrapper .brands li: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);
}
.contact-wrapper .brands li img {
  display: block;
  width: 100%;
  height: 1.8rem;
  object-fit: contain;
  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;
}
.contactus-wrapper {
  padding-bottom: 0.9rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contactus-wrapper .box-container {
  background: #101010;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.contactus-wrapper .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 */
  padding: 0 2rem;
  justify-content: center;
}
.contactus-wrapper .qrcodes {
  padding-right: 1.2rem;
  margin-right: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.contactus-wrapper .qrcodes 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 */
  justify-content: center;
}
.contactus-wrapper .qrcodes li {
  text-align: center;
  list-style-type: none;
  margin-right: 0.9rem;
}
.contactus-wrapper .qrcodes li:last-child {
  margin-right: 0;
}
.contactus-wrapper .qrcodes .pic {
  width: 1.88rem;
  margin: 0 auto;
}
.contactus-wrapper .qrcodes p {
  font-family: "light";
  font-size: var(--fs24);
  line-height: 0.3rem;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 0.15rem;
}
.contactus-wrapper .info {
  width: 28%;
}
.contactus-wrapper .info img {
  width: 0.2rem;
  mix-blend-mode: lighten;
  vertical-align: middle;
  margin-right: 0.15rem;
  position: relative;
  top: -2px;
}
.contactus-wrapper .info ul {
  list-style-type: none;
}
.contactus-wrapper .info li {
  font-family: "light";
  font-size: var(--fs18);
  color: #fff;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contactus-wrapper .info li:last-child {
  margin-bottom: 0;
}
.contactus-wrapper .info li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contactus-wrapper .info span {
  margin-right: 15px;
}
.caption-box {
  margin-bottom: 0.42rem;
}
.caption-box .caption {
  font-size: var(--fs48);
  font-weight: 700;
  line-height: 0.72rem;
  color: #ffffff;
}
.caption-box .brief {
  font-family: "light";
  font-size: var(--fs30);
  line-height: 0.48rem;
  color: #efefef;
  margin-top: 0.15rem;
  padding-bottom: 0.45rem;
  width: 60%;
}
.about-wrapper {
  padding-top: 1.12rem;
}
.about-wrapper .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 .main .pic {
  width: 5.67rem;
}
.about-wrapper .main .info {
  width: 100%;
}
.about-wrapper .main .content {
  font-family: "light";
  font-size: var(--fs30);
  line-height: 0.48rem;
  color: #efefef;
}
.about-wrapper .result {
  margin-bottom: 0.54rem;
}
.about-wrapper .result ul {
  list-style-type: none;
  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 */
}
.about-wrapper .result li {
  position: relative;
  width: 19.11%;
  margin-right: 1.1125%;
}
.about-wrapper video {
  width: 100%;
}
.video-box {
  position: relative;
}
.video-box video {
  width: 100%;
}
.caseinfo-wrapper {
  padding-top: 1.18rem;
}
.caseinfo-wrapper .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;
}
.caseinfo-wrapper .left {
  width: 30%;
  height: 100%;
  position: sticky;
  top: 0.6rem;
}
.caseinfo-wrapper .left li {
  font-size: var(--fs24);
  line-height: 0.48rem;
  color: #efefef;
  list-style-type: none;
  margin-bottom: 0.46rem;
  font-family: "light";
}
.caseinfo-wrapper .left li:last-child {
  margin-bottom: 0;
}
.caseinfo-wrapper .right {
  width: 59.11%;
}
.caseinfo-wrapper .right .title {
  font-weight: 700;
  font-size: var(--fs48);
  line-height: 0.72rem;
  color: #fff;
  margin-bottom: 0.38rem;
}
.caseinfo-wrapper .content {
  font-family: "light";
  font-size: var(--fs30);
  line-height: 0.48rem;
  color: #efefef;
}
.caseinfo-wrapper .content img {
  margin-bottom: 0.5rem;
}
.caseinfo-wrapper .content img:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .about-wrapper .box-container {
    width: 82%;
  }
  .goods-box .swiper-btn:hover {
    box-shadow: 0 2px 30px rgba(255, 255, 255, 0.1);
    background-color: #fff;
  }
  .goods-box .swiper-btn:hover:before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .goods-box .swiper-btn:hover svg path {
    fill: #000;
  }
}
@media screen and (max-width: 1600px) {
  .contact-wrapper .brands li img {
    height: 1.54rem;
  }
  .contact-wrapper .main ul li {
    margin-bottom: 0.3rem;
    padding-bottom: 0.1rem;
  }
  .contact-wrapper .main ul img {
    margin-bottom: 0.1rem;
  }
  .contact-wrapper .main .title {
    margin-bottom: 0.2rem;
  }
  .contact-wrapper .main p {
    margin-bottom: 0.04rem;
  }
  .contact-wrapper .main .info {
    padding: 0.4rem 0.36rem;
  }
  .about-wrapper .main .content {
    line-height: 0.4rem;
  }
  .contactus-wrapper .qrcodes .pic {
    width: 1.7rem;
  }
  .contactus-wrapper .qrcodes p {
    font-size: var(--fs20);
  }
  .contactus-wrapper .qrcodes li {
    margin-right: 0.6rem;
  }
  .contactus-wrapper .qrcodes {
    padding-right: 0.9rem;
    margin-right: 0.9rem;
  }
  .contactus-wrapper .main {
    padding: 0 1.8rem;
  }
  .contactus-wrapper .info {
    width: 30%;
  }
}
@media screen and (max-width: 1440px) {
  .goods-box p {
    margin-top: 0.12rem;
  }
  .contactus-wrapper .info li {
    font-size: var(--fs16);
  }
  .contactus-wrapper .qrcodes .pic {
    width: 1.6rem;
  }
  .contactus-wrapper .main {
    padding: 0 1.6rem;
  }
  .contactus-wrapper .qrcodes {
    padding-right: 1rem;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 1366px) {
  .contactus-wrapper .qrcodes p {
    font-size: var(--fs18);
  }
}
@media screen and (max-width: 1004px) {
  .nav-icon {
    font-size: 0;
    width: 0.48rem;
    height: 0.48rem;
    position: relative;
    z-index: 10;
    margin-left: 0.3rem;
  }
  .nav-icon.on span:nth-child(1) {
    transform: rotate(45deg);
    margin: 0;
    transition: margin 180ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms, -webkit-transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms;
  }
  .nav-icon.on span:nth-child(2) {
    opacity: 0;
  }
  .nav-icon.on span:nth-child(3) {
    transform: rotate(-45deg);
    margin: 0;
    transition: margin 180ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms, -webkit-transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms;
  }
  .nav-icon span {
    display: inline-block;
    width: 100%;
    height: 0.04rem;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0.2rem;
    z-index: 10;
    border-radius: 2px;
    transform-origin: center center;
    transition: margin 140ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 230ms, transform 280ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms, -webkit-transform 280ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  }
  .nav-icon span:nth-child(1) {
    margin-top: -6px;
  }
  .nav-icon span:nth-child(2) {
    margin-top: 0;
  }
  .nav-icon span:nth-child(3) {
    margin-top: 6px;
  }
  .phone-nav {
    width: 100%;
    height: calc(100% - 1.2rem);
    position: fixed;
    right: 0;
    top: 1.2rem;
    background: #fff;
    z-index: 501;
    overflow: auto;
    border-top: 1px solid #f3f3f3;
  }
  .phone-nav ul {
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 0.8s ease;
    -webkit-transition: max-height 0.8s ease;
    -moz-transition: max-height 0.8s ease;
    -ms-transition: max-height 0.8s ease;
    -o-transition: max-height 0.8s ease;
  }
  .phone-nav ul::-webkit-scrollbar {
    width: 4px;
  }
  .phone-nav ul::-webkit-scrollbar-track {
    background-color: #eaeaea;
  }
  .phone-nav ul::-webkit-scrollbar-thumb {
    background-color: #000;
  }
  .phone-nav ul li {
    position: relative;
  }
  .phone-nav ul li.active .cat {
    color: #000;
    font-weight: 700;
  }
  .phone-nav ul li.active .cat:before {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
  .phone-nav ul li > a {
    position: relative;
    display: block;
    font-size: 0.3rem;
    color: #333;
    line-height: 0.96rem;
    padding: 0 0.3rem;
    border-bottom: 1px solid #f3f3f3;
  }
  .phone-nav ul li .cat:before,
  .phone-nav ul li .cat:after {
    content: "";
    display: inline-block;
    background: #000;
    position: absolute;
    z-index: 10;
  }
  .phone-nav ul li .cat:before {
    width: 0.06rem;
    height: 0.26rem;
    right: 0.4rem;
    top: 0.36rem;
    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;
  }
  .phone-nav ul li .cat:after {
    width: 0.26rem;
    height: 0.06rem;
    right: 0.3rem;
    top: 0.46rem;
  }
  .phone-nav ul li.on > a {
    font-weight: 700;
    color: #000;
  }
  .phone-nav ul li .navs {
    background: #f9f9f9;
    width: 100%;
    display: none;
  }
  .phone-nav ul li .navs a {
    font-size: 14px;
    display: block;
    color: #666;
    padding-left: 0;
    line-height: 1rem;
    padding: 0 0.3rem;
    border-bottom: 1px solid #f3f3f3;
  }
  .phone-nav ul li .navs a:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  .page-title {
    font-size: var(--fs30);
    line-height: 0.6rem;
    margin-bottom: 0.4rem;
  }
  .page-title:after {
    width: 0.48rem;
    height: 0.06rem;
  }
  .goods-box .swiper-slide,
  .goods-box li {
    width: 100%;
  }
  .goods-box .title,
  .goods-box p {
    width: 70%;
  }
  .goods-box .title {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .goods-box p {
    font-size: var(--fs16);
    line-height: 0.4rem;
    max-height: 1.6rem;
  }
  .contact-wrapper {
    margin-top: 0;
  }
  .contact-wrapper .main .title {
    font-size: var(--fs20);
    line-height: 0.48rem;
    margin-bottom: 0.2rem;
  }
  .contact-wrapper .main .info {
    right: 0;
    top: 0;
    position: relative;
    margin-top: 0.8rem;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .contact-wrapper .main p,
  .contact-wrapper .main .brief {
    line-height: 0.48rem;
  }
  .contact-wrapper .main p {
    font-size: var(--fs20);
    margin-bottom: 0.07rem;
  }
  .contact-wrapper .main ul li {
    padding-bottom: 0.3rem;
    margin-bottom: 0.34rem;
  }
  .contact-wrapper .main ul img {
    width: 0.3rem;
  }
  .contact-wrapper .main .brief {
    font-size: var(--fs16);
  }
  .contact-wrapper .qrcodes {
    margin-top: 0.8rem;
    padding: 0.8rem 0;
  }
  .contact-wrapper .qrcodes li {
    margin-right: 0.3rem;
  }
  .contact-wrapper .qrcodes .pic {
    width: 1.8rem;
  }
  .contact-wrapper .qrcodes p {
    font-size: var(--fs14);
    line-height: 0.44rem;
    margin-top: 0.24rem;
  }
  .contact-wrapper .box-2 .page-title {
    margin-bottom: 0.28rem;
  }
  .contact-wrapper .brands ul {
    padding: 0;
  }
  .contact-wrapper .brands li {
    width: calc(100% / 4);
    margin-top: 0.3rem;
  }
  .contact-wrapper .brands li img {
    height: auto;
  }
  .caption-box {
    margin-bottom: 0.48rem;
  }
  .caption-box .caption {
    font-size: var(--fs30);
    line-height: 0.6rem;
  }
  .caption-box .brief {
    font-size: var(--fs18);
    margin-top: 0.1rem;
    padding-bottom: 0.3rem;
    width: 100%;
  }
  .about-wrapper {
    padding-top: 0.64rem;
  }
  .about-wrapper .main {
    display: block;
  }
  .about-wrapper .main .pic {
    width: 100%;
  }
  .about-wrapper .main .info {
    width: 100%;
    margin-bottom: 0.8rem;
  }
  .about-wrapper .main .content {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .about-wrapper .result {
    margin-bottom: 0.6rem;
  }
  .about-wrapper .result ul {
    flex-flow: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .about-wrapper .result li {
    border-radius: 0.3rem;
    width: calc((100% - .3rem) / 2);
    margin-right: 0;
    margin-top: 0.3rem;
  }
  .about-wrapper .result li:nth-child(-n+2) {
    margin-top: 0;
  }
  .caseinfo-wrapper {
    padding-top: 0.6rem;
  }
  .caseinfo-wrapper .main {
    display: block;
  }
  .caseinfo-wrapper .left {
    width: 100%;
    position: relative;
    top: 0;
  }
  .caseinfo-wrapper .left 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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .caseinfo-wrapper .left li {
    width: 48%;
    font-size: var(--fs16);
    line-height: 0.6rem;
    margin-bottom: 0.6rem;
  }
  .caseinfo-wrapper .right {
    width: 100%;
  }
  .caseinfo-wrapper .right .title {
    font-size: var(--fs30);
    line-height: 0.6rem;
    margin-bottom: 0.48rem;
  }
  .caseinfo-wrapper .content {
    font-size: var(--fs18);
  }
  .contactus-wrapper {
    padding-bottom: 1rem !important;
    padding-top: 1rem;
  }
  .contactus-wrapper .box-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .contactus-wrapper .main {
    display: block;
    padding: 0 0.3rem;
  }
  .contactus-wrapper .qrcodes {
    padding-right: 0;
    border-right: none;
    margin-right: 0;
  }
  .contactus-wrapper .qrcodes li {
    margin-right: 0.48rem;
  }
  .contactus-wrapper .qrcodes .pic {
    width: 2rem;
  }
  .contactus-wrapper .qrcodes p {
    font-size: var(--fs16);
    line-height: 0.4rem;
    margin-top: 0.2rem;
  }
  .contactus-wrapper .info {
    width: 100%;
    margin-top: 0.6rem;
  }
  .contactus-wrapper .info img {
    width: 0.3rem;
    margin-right: 0.15rem;
  }
  .contactus-wrapper .info li {
    font-size: var(--fs16);
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .contactus-wrapper .info span {
    margin-right: 10px;
  }
}
.footer-wrapper {
  padding: 0.86rem 0;
}
.footer-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;
  margin-top: 0.52rem;
}
.footer-wrapper .contact,
.footer-wrapper .contact a {
  font-size: var(--fs24);
  line-height: 0.42rem;
  color: #ffffff;
}
.footer-wrapper .contact span {
  display: inline-block;
  margin-left: 0.16rem;
}
.footer-wrapper .contact span:first-child {
  margin-left: 0;
}
.footer-wrapper .logo {
  width: 2.24rem;
  display: block;
}
.share 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 */
  list-style-type: none;
}
.share li {
  position: relative;
  width: 0.62rem;
  height: 0.62rem;
  margin-right: 0.2rem;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.share li:last-child {
  margin-right: 0;
}
.share li a {
  display: block;
  width: 100%;
  height: 100%;
}
.share li:hover .hidebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.share li img {
  width: 100%;
}
.share .hidebox {
  position: absolute;
  left: 50%;
  bottom: 0.76rem;
  z-index: 10;
  margin-left: -0.6rem;
  width: 1.2rem;
  background: #fff;
  padding: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.48s ease;
  -webkit-transition: all 0.48s ease;
  -moz-transition: all 0.48s ease;
  -ms-transition: all 0.48s ease;
  -o-transition: all 0.48s ease;
  transform: translateY(0.1rem);
  -webkit-transform: translateY(0.1rem);
  -moz-transform: translateY(0.1rem);
  -ms-transform: translateY(0.1rem);
  -o-transform: translateY(0.1rem);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.share .hidebox:after {
  content: "";
  border: 5px solid transparent;
  border-top-color: #fff;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: -10px;
  z-index: 10;
}
.swiper-box {
  position: relative;
}
.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;
}
.gotop {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/gotop.png);
  position: fixed;
  right: 0.4rem;
  bottom: 30px;
  z-index: 20;
  display: none;
}
@media screen and (max-width: 1366px) {
  .footer-wrapper .box {
    margin-top: 0.36rem;
  }
}
@media screen and (max-width: 1004px) {
  .footer-wrapper {
    padding: 0.6rem 0;
  }
  .footer-wrapper .box {
    flex-flow: wrap;
    flex-direction: column-reverse;
    margin-top: 0.36rem;
  }
  .footer-wrapper .contact,
  .footer-wrapper .contact a {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .footer-wrapper .contact span {
    margin-left: 0;
  }
  .footer-wrapper .logo {
    display: none;
  }
  .share {
    width: 100%;
    margin-bottom: 0.6rem;
  }
  .share ul {
    justify-content: center;
  }
  .share li {
    width: 0.7rem;
    height: 0.7rem;
    margin-right: 0.3rem;
  }
  .share .hidebox {
    bottom: 1rem;
    margin-left: -1rem;
    width: 2rem;
  }
  .gotop {
    width: 0.6rem;
    height: 0.6rem;
    right: 0.3rem;
    bottom: 30%;
  }
}
.index-banner-wrapper {
  position: relative;
  margin-top: 0.6rem;
}
.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%;
}
.index-banner-wrapper .swiper-slide img.phone {
  display: none;
}
.index-banner-wrapper .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  background: none;
  position: relative;
}
.index-banner-wrapper .swiper-pagination-bullet:before,
.index-banner-wrapper .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.index-banner-wrapper .swiper-pagination-bullet:before {
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.index-banner-wrapper .swiper-pagination-bullet:after {
  width: 0.24rem;
  height: 0.24rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  margin-top: -0.12rem;
  margin-left: -0.12rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  -webkit-transition: opacity 0.35s ease;
  -moz-transition: opacity 0.35s ease;
  -ms-transition: opacity 0.35s ease;
  -o-transition: opacity 0.35s ease;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
  visibility: visible;
}
.index-banner-wrapper .swiper-pagination-bullet svg {
  display: none;
}
.index-banner-wrapper .swiper-pagination {
  bottom: auto;
  width: auto;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 0.58rem;
}
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet {
  display: block;
  margin: 0.22rem auto;
  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;
}
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:hover:before {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
@media screen and (min-width: 1004px) {
  .page-nav-wrapper {
    position: relative;
    z-index: 20;
    background-color: #fff;
    width: 100%;
  }
  .page-nav-wrapper:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e4e4e4;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  .page-nav-wrapper .intruction-caption {
    display: none;
  }
  .page-nav-wrapper .nav {
    position: relative;
    z-index: 2;
    font-size: 0;
    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;
  }
  .page-nav-wrapper .nav > a {
    position: relative;
    font-size: var(--fs16);
    line-height: 0.8rem;
    text-align: center;
    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;
    margin-right: 0.72rem;
  }
  .page-nav-wrapper .nav > a:last-child {
    margin-right: 0;
  }
  .page-nav-wrapper .nav > a:last-child:after {
    display: none;
  }
  .page-nav-wrapper .nav > a.on,
  .page-nav-wrapper .nav > a:hover {
    color: #000;
  }
  .page-nav-wrapper .nav > a.on:before,
  .page-nav-wrapper .nav > a:hover:before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  .page-nav-wrapper .nav > a:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    background-color: #000;
    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;
  }
}
@media screen and (max-width: 1004px) {
  .page-nav-wrapper {
    position: relative;
    padding: 0;
    height: auto;
    margin-top: 0;
    top: 0;
    width: 100%;
    z-index: 20;
    background: #f4f4f4;
  }
  .page-nav-wrapper .box-container {
    height: auto;
    padding: 0;
  }
  .page-nav-wrapper .intruction-caption {
    position: relative;
    display: block;
    line-height: 0.88rem;
    padding: 0 0.3rem;
    background: #000;
    color: #fff;
    font-size: 0.26rem;
  }
  .page-nav-wrapper .intruction-caption.extend:after {
    transform: rotateX(180deg);
  }
  .page-nav-wrapper .intruction-caption:after {
    display: inline-block;
    position: absolute;
    right: 0.3rem;
    top: 0;
    z-index: 10;
    content: "";
    width: 0.26rem;
    height: 100%;
    background: url(../img/down.png) no-repeat center center;
    background-size: contain;
  }
  .page-nav-wrapper .nav {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
    width: 100%;
    background: #f7f8f9;
    display: none;
  }
  .page-nav-wrapper .nav a {
    display: block;
    width: 100%;
    text-align: left;
    line-height: 0.84rem;
    padding: 0 0.3rem;
    font-size: 0.26rem;
    border-top: 1px solid #f2f2f2;
  }
  .page-nav-wrapper .nav a:first-child {
    border-top: none;
  }
  .page-nav-wrapper .nav > a.on,
  .page-nav-wrapper .nav > a:hover {
    background: none;
  }
  .page-nav-wrapper .nav > a:after {
    display: none;
  }
  .index-banner-wrapper {
    margin-top: 0;
  }
  .index-banner-wrapper .swiper-slide img {
    display: none;
    height: auto;
  }
  .index-banner-wrapper .swiper-slide img.phone {
    display: block;
  }
  .index-banner-wrapper .swiper-pagination-bullet {
    width: 0.16rem;
    height: 0.16rem;
  }
  .index-banner-wrapper .swiper-pagination-bullet:after {
    width: 0.36rem;
    height: 0.36rem;
    margin-top: -0.18rem;
    margin-left: -0.18rem;
  }
  .index-banner-wrapper .swiper-pagination {
    right: 0;
    width: 100%;
    top: auto;
    bottom: 0.4rem;
    transform: none;
  }
  .index-banner-wrapper .swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    margin: 0 0.22rem;
  }
}
/*åˆ†é¡µ*/
.pageNum {
  text-align: center;
  font-size: 0;
  margin-top: 0.98rem;
}
.pageNum a {
  display: inline-block;
  color: #4d4d4d;
  font-size: 14px;
  font-family: "hr";
  vertical-align: middle;
  margin: 0 0.1rem;
  width: 0.48rem;
  height: 0.48rem;
  line-height: 0.48rem;
  background-color: #fff;
  border: solid 1px #eee;
  text-align: center;
  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 .btn {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px;
}
.pageNum .prev {
  background-image: url(../img/icon-left2.png);
}
.pageNum .prev:hover {
  background-image: url(../img/icon-left.png);
}
.pageNum .next {
  background-image: url(../img/icon-right2.png);
}
.pageNum .next:hover {
  background-image: url(../img/icon-right.png);
}
.pageNum a:hover,
.pageNum .on {
  color: #fff;
  background-color: #000;
}
.pageMore {
  display: none;
  margin-top: 0.6rem;
}
.pageMore a {
  display: block;
  width: 100%;
  text-align: center;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #000;
  color: #fff;
  font-size: 12px;
}
.page-wrapper .content {
  font-size: var(--fs16);
  line-height: 0.36rem;
}
.search-wrapper {
  padding-top: 1.12rem;
}
.search-wrapper .result {
  margin-bottom: 0.2rem;
  color: #efefef;
}
.search-wrapper .result span {
  display: inline-block;
  font-size: var(--fs16);
  margin-right: 0.3rem;
  line-height: 0.48rem;
}
.search-wrapper .result b {
  display: inline-block;
  margin: 0 4px;
  color: #fff;
  font-family: "mb";
  text-decoration: underline;
}
.search-wrapper .tips {
  font-size: var(--fs18);
  line-height: 0.48rem;
  color: #efefef;
  text-align: center;
  height: 3rem;
  line-height: 3rem;
}
@media screen and (max-width: 1004px) {
  .page-wrapper .content {
    line-height: 0.48rem;
  }
  .search-wrapper {
    padding-top: 0.6rem;
  }
  .search-wrapper .result {
    margin-bottom: 0.3rem;
  }
  .search-wrapper .result span {
    font-size: var(--fs14);
    margin-right: 0.48rem;
  }
  .search-wrapper .list li a {
    padding: 0.2rem 0;
  }
  .search-wrapper .list .title {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-right: 0.6rem;
  }
  .search-wrapper .list p {
    font-size: var(--fs14);
  }
}
.imgScale {
  position: relative;
}
.imgScale:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.imgScale: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);
}
.imgScale:before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@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;
  }
}
@media screen and (max-width: 1600px) {
  :root {
    --fs18: 17px;
    --fs20: 18px;
    --fs22: 20px;
    --fs24: 22px;
    --fs28: 26px;
    --fs30: 28px;
    --fs36: 34px;
    --fs40: 36px;
    --fs48: 44px;
  }
}
@media screen and (max-width: 1440px) {
  :root {
    --fs22: 0.2rem;
    --fs24: 0.22rem;
    --fs28: 0.26rem;
    --fs30: 0.28rem;
    --fs36: 0.3rem;
    --fs40: 0.32rem;
    --fs48: 0.4rem;
  }
}
@media screen and (max-width: 1366px) {
  :root {
    --fs14: 13px;
    --fs15: 14px;
    --fs16: 15px;
  }
}
@media screen and (max-width: 1280px) {
  :root {
    --fs14: 12px;
  }
}
@media screen and (max-width: 1004px) {
  :root {
    --fs14: 0.24rem;
    --fs16: 0.28rem;
    --fs18: 0.3rem;
    --fs20: 0.32rem;
    --fs22: 0.36rem;
    --fs24: 0.38rem;
    --fs28: 0.4rem;
    --fs30: 0.42rem;
    --fs36: 0.44rem;
    --fs40: 0.46rem;
    --fs48: 0.48rem;
  }
  .box-container,
  .w1200 {
    width: 100%;
    padding: 0 0.3rem;
  }
  .pic img.pc {
    display: none;
  }
  .pic img.phone {
    display: block;
  }
}
