@charset "UTF-8";
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*
 * 栅格布局
 * @param $col 栅格数
 * @param $gap 栅格间隔
 * @param $colPhone 手机端栅格数
 * @param $gapPhone 手机端栅格间隔
 */
/*
 * 富文本初始化
 */
body.show a,
body.show .transition,
body.show :before,
body.show img {
  -webkit-transition: All 0.3s ease;
  transition: All 0.3s ease;
}

.zoomImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}
.zoomImg:before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: /static/pages/css/"";
  width: 50%;
  height: 100%;
  opacity: 0.6;
  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);
}
.zoomImg:hover:before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
.zoomImg:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

a:hover .zoomImg:before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
a:hover .zoomImg img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
/**/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100px;
  overflow-x: hidden;
}

body {
  font-size: 12px;
  font-family: "fontFamily-R";
  color: #1E1E1E;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  background-color: white;
}
body.show {
  opacity: 1;
}

a {
  color: #1E1E1E;
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
a:active {
  star: expression(this.onFocus=this.blur());
}
a:link {
  text-decoration: none;
  outline: none;
}
a:visited {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
  outline: none;
}

li {
  list-style: outside none;
}

li {
  list-style-type: none;
}

h2,
h3,
h4,
h5 {
  font-weight: 400;
  font-family: "fontFamily-B";
}

textarea,
input {
  background: transparent;
  color: #1E1E1E;
  outline: none;
  border: 0;
}

em {
  font-style: normal;
}

img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
  object-fit: cover;
}

.ctl {
  text-transform: capitalize;
}

.phone-show {
  display: none;
}

/*foot*/
.topA {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  z-index: 45;
  right: 0.6rem;
  bottom: 0.6rem;
  border-radius: 50%;
  border: 0.02rem solid #E6E6E6;
  width: 0.56rem;
  height: 0.56rem;
  background: white;
  color: #000;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
}
.topA:after {
  display: block;
  content: "";
  font-family: "iconfont";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #a6a6a6;
  font-size: 12px;
}
.topA:hover {
  background-color: #d71921;
  border: 0.02rem solid #d71921;
  box-shadow: 0 0 10px 0 #d71921;
}
.topA:hover::after {
  color: white;
  font-size: 12px;
}
.topA.show {
  opacity: 1;
  visibility: visible;
}

.bgc_w {
  background-color: rgba(225, 225, 225, 0.02) !important;
  color: #25489c !important;
  border: 1.2px solid #25489c !important;
}

.bgc_b {
  background-color: rgba(225, 225, 225, 0.02) !important;
  color: #fff !important;
  border: 1.2px solid #fff !important;
}

@font-face {
  font-family: "fontFamily-R";
  src: url(https://wsddata.bfqxfsgs.com/static/style/fonts/zh_CN/MiSans-Normal_sub.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* 避免阻塞渲染 */
}
@font-face {
  font-family: "fontFamily-B";
  src: url(https://wsddata.bfqxfsgs.com/static/style/fonts/zh_CN/MiSans-Demibold_sub.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* 避免阻塞渲染 */
}
@font-face {
  font-family: "fontFamily-Num";
  src: url(https://wsddata.bfqxfsgs.com/static/style/fonts/EN/Oxanium-SemiBold.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* 避免阻塞渲染 */
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*
 * 栅格布局
 * @param $col 栅格数
 * @param $gap 栅格间隔
 * @param $colPhone 手机端栅格数
 * @param $gapPhone 手机端栅格间隔
 */
/*
 * 富文本初始化
 */
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*
 * 栅格布局
 * @param $col 栅格数
 * @param $gap 栅格间隔
 * @param $colPhone 手机端栅格数
 * @param $gapPhone 手机端栅格间隔
 */
/*
 * 富文本初始化
 */
* {
  --totalH: 1.2rem;
  --headH: .8rem;
  --topHeadh: .4rem;
}

@-webkit-keyframes fadeInUpSmall {
  from {
    -webkit-transform: translate3d(0, 0.4rem, 0);
    transform: translate3d(0, 0.4rem, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInUpSmall {
  from {
    -webkit-transform: translate3d(0, 0.4rem, 0);
    transform: translate3d(0, 0.4rem, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

@-webkit-keyframes scaleMap {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@keyframes scaleMap {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
@-webkit-keyframes scaleMapSmall {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
}
@keyframes scaleMapSmall {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
}
@-webkit-keyframes handUp {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -0.08rem);
    transform: translate(0, -0.08rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes handUp {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -0.08rem);
    transform: translate(0, -0.08rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes lightFn {
  0% {
    -webkit-mask-size: 0 100%;
    mask-size: 0 100%;
  }
  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
@keyframes lightFn {
  0% {
    -webkit-mask-size: 0 100%;
    mask-size: 0 100%;
  }
  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
.g-crumbs {
  margin-top: 0.32rem;
}
.g-crumbs .wal ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-crumbs .wal ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-crumbs .wal ul li::after {
  content: /static/pages/css/"";
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-arrow.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  background-size: contain;
}
.g-crumbs .wal ul li:first-child a::before {
  content: /static/pages/css/"";
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-home.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  background-size: contain;
}
.g-crumbs .wal ul li:last-child::after {
  display: none;
}
.g-crumbs .wal ul li:last-child a {
  color: #767676;
  cursor: default;
}
.g-crumbs .wal ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
}

.g-cookie__container {
  position: fixed;
  bottom: 0.2rem;
  right: 0.2rem;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  background-color: white;
  border-radius: 0.16rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 14px rgba(43, 31, 31, 0.1);
}
.g-cookie__container.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.g-cookie__container .g-cookie__wal {
  max-width: 4.72rem;
  padding: 0.4rem;
}
.g-cookie__container .g-cookie__wal .content {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: "fontFamily-R";
}
.g-cookie__container .g-cookie__wal .content a {
  color: #0A68DD;
  text-decoration: underline;
}
.g-cookie__container .g-cookie__wal .btn__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.42rem;
}
.g-cookie__container .g-cookie__wal .btn__box .c_btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  cursor: pointer;
  padding: 0.19rem 0.44rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
  background: #F6F6F6;
  border-radius: 0.3rem;
}
.g-cookie__container .g-cookie__wal .btn__box .c_btn:nth-child(1) {
  margin-right: 0.24rem;
}
.g-cookie__container .g-cookie__wal .btn__box .c_btn.bg_blue {
  background: -webkit-linear-gradient(352deg, #0A68DD 0%, #00D3A1 100%);
  background: linear-gradient(98deg, #0A68DD 0%, #00D3A1 100%);
  border: none;
  color: white;
}

header {
  --fcolor: white;
  width: 100%;
  height: var(--totalH);
  background-color: transparent;
  z-index: 99;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header.hide {
  z-index: -1;
}
header.hide .top-head_nav,
header.hide .g-head {
  top: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
header.hide .layer {
  display: none;
}
header .top-head_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topHeadh);
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 99;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .top-head_nav .wal {
  height: 100%;
}
header .top-head_nav .wal .head_nav-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
header .top-head_nav .wal .head_nav-inner ._btn {
  cursor: pointer;
  margin-left: 0.36rem;
}
header .top-head_nav .wal .head_nav-inner ._btn a {
  color: var(--fcolor);
}
header .top-head_nav .wal .head_nav-inner ._btn:first-child {
  margin-left: 0;
}
header .top-head_nav .wal .head_nav-inner ._btn ._inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
  height: 100%;
}
header .top-head_nav .wal .head_nav-inner ._btn ._inner .icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.08rem;
}
header .top-head_nav .wal .head_nav-inner ._btn ._inner .icon svg {
  width: 100%;
  height: 100%;
}
header .g-head {
  position: fixed;
  top: var(--topHeadh);
  left: 0;
  width: 100%;
  height: var(--headH);
  z-index: 99;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-bottom: 1px solid transparent;
}
header .g-head .wal {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .g-head .wal .g-head-main {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: var(--headH);
}
header .g-head .wal .g-head-main .logo-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
header .g-head .wal .g-head-main .logo-box .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 2.37rem;
  height: var(--headH);
  line-height: var(--headH);
}
header .g-head .wal .g-head-main .logo-box .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .g-head .wal .g-head-main .logo-box .img img._hover {
  display: none;
}
header .g-head .wal .g-head-main .center-nav > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
header .g-head .wal .g-head-main .center-nav > ul > .nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0 0.28rem;
  border-bottom: 0.03rem solid transparent;
}
header .g-head .wal .g-head-main .center-nav > ul > .nav-item.active > a {
  opacity: 1;
}
header .g-head .wal .g-head-main .center-nav > ul > .nav-item > a {
  position: relative;
  color: var(--fcolor);
  font-size: 0.16rem;
  line-height: 0.16rem;
  opacity: 0.7;
}
header .g-head .wal .g-head-main .center-nav .nav__line {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0.52rem;
  background-color: #d71921;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
header .g-head .wal .g-head-main .center-nav .nav__line.show {
  opacity: 1;
}
header .g-head .wal .g-head-main .g-head-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
header .g-head .wal .g-head-main .g-head-right .href-btn img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
header .g-head .wal .g-head-main .g-head-right .search.active .search-btn {
  opacity: 1;
}
header .g-head .wal .g-head-main .g-head-right .search .search-btn {
  cursor: pointer;
  margin-left: 0.4rem;
}
header .g-head .wal .g-head-main .g-head-right .search .search-btn .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--fcolor);
}
header .g-head .wal .g-head-main .g-head-right .search .search-btn .icon svg {
  width: 0.24rem;
  height: 0.24rem;
}
header .layer {
  position: fixed;
  width: 100%;
  height: 0;
  top: var(--totalH);
  left: 0;
  z-index: 10;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 0;
  box-shadow: 0 0.1rem 0.13rem rgba(0, 0, 0, 0.05);
  background-color: white;
}
header .layer.layer__text .layer__wp {
  padding: 1.18rem 0 0.54rem;
}
header .layer.layer__text .layer__wp .layer__list {
  position: relative;
  text-align: center;
  max-width: 3rem;
}
header .layer.layer__text .layer__wp .layer__list .layer__item {
  line-height: normal;
  margin-bottom: 0.24rem;
}
header .layer.layer__text .layer__wp .layer__list .layer__item:last-child {
  margin-bottom: 0;
}
header .layer.layer__text .layer__wp .layer__list .layer__item a {
  color: var(--fcolor);
  font-size: 0.16rem;
  line-height: 0.18rem;
}
header .layer.layer__text .layer__wp .layer__list .layer__item a:hover {
  color: #d71921;
}
header .layer.layer_solution .layer__wp {
  padding: 0.64rem 0;
  max-width: 15.08rem;
}
header .layer.layer_solution .layer__wp .layer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.32rem -0.16rem 0;
}
header .layer.layer_solution .layer__wp .layer__list .layer__item {
  width: calc((100% - 6 * .32rem) / 6);
  margin: 0.32rem 0.16rem 0 0.16rem;
}
header .layer.layer_solution .layer__wp .layer__list .layer__item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: baseline;
  -webkit-justify-content: baseline;
  -ms-flex-pack: baseline;
  justify-content: baseline;
}
header .layer.layer_solution .layer__wp .layer__list .layer__item > a:hover .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
header .layer.layer_solution .layer__wp .layer__list .layer__item > a .img {
  width: 100%;
  height: 1.28rem;
  overflow: hidden;
}
header .layer.layer_solution .layer__wp .layer__list .layer__item > a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
header .layer.layer_solution .layer__wp .layer__list .layer__item > a .text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
header .layer.layer__about .layer__wp {
  padding: 0.64rem 0;
}
header .layer.layer__about .layer__wp .layer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
header .layer.layer__about .layer__wp .layer__list .layer__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  header .layer.layer__about .layer__wp .layer__list .layer__item {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  header .layer.layer__about .layer__wp .layer__list .layer__item:nth-child(3n) {
    margin-right: 0;
  }
  header .layer.layer__about .layer__wp .layer__list .layer__item:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  header .layer.layer__about .layer__wp .layer__list .layer__item {
    width: calc((100% - ((1 - 1) * 15px)) / 1);
    margin-right: 15px;
    margin-top: 15px;
  }
  header .layer.layer__about .layer__wp .layer__list .layer__item:nth-child(1n) {
    margin-right: 0;
  }
  header .layer.layer__about .layer__wp .layer__list .layer__item:nth-child(-n+1) {
    margin-top: 0;
  }
}
header .layer.layer__about .layer__wp .layer__list .layer__item .item-head {
  padding-bottom: 0.08rem;
  border-bottom: 1px solid #E6E6E6;
}
header .layer.layer__about .layer__wp .layer__list .layer__item .item-head .item-title {
  font-family: "fontFamily-B";
  font-size: 0.2rem;
  line-height: 0.24rem;
}
header .layer.layer__about .layer__wp .layer__list .layer__item .item-head .item-context {
  font-size: 0.12rem;
  line-height: 0.24rem;
  margin-top: 0.08rem;
  color: #767676;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
header .layer.layer__about .layer__wp .layer__list .layer__item .links dd {
  margin-top: 0.16rem;
  line-height: 0.24rem;
}
header .layer.layer__about .layer__wp .layer__list .layer__item .links dd a {
  font-size: 0.14rem;
  color: #333333;
}
header .layer.layer__product .g-text-hover {
  --color: rgba(215, 25, 33, 1);
}
header .layer.layer__product .layer__wp {
  --offsetX: calc(100% / 4);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  min-height: 4.5rem;
  max-height: 5.77rem;
}
header .layer.layer__product .layer__wp .layer_v1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  width: var(--offsetX);
  left: 0;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-right: 1px solid #E6E6E6;
  padding: 0.4rem 0;
  overflow: auto;
}
header .layer.layer__product .layer__wp .layer_v1::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
header .layer.layer__product .layer__wp .layer_v1::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #e6e6e6;
}
header .layer.layer__product .layer__wp .layer_v1::-webkit-scrollbar-thumb:vertical {
  background-color: #e6e6e6;
}
header .layer.layer__product .layer__wp .layer_v1::-webkit-scrollbar-width {
  width: 0.04rem;
}
header .layer.layer__product .layer__wp .layer_v1::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: none;
}
header .layer.layer__product .layer__wp .layer_v1 > li {
  cursor: pointer;
  width: 100%;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/product_bg.png) center center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 800px) {
  header .layer.layer__product .layer__wp .layer_v1 > li {
    width: calc((100% - ((1 - 1) * 0.16rem)) / 1);
    margin-right: 0.16rem;
    margin-top: 0.16rem;
  }
  header .layer.layer__product .layer__wp .layer_v1 > li:nth-child(1n) {
    margin-right: 0;
  }
  header .layer.layer__product .layer__wp .layer_v1 > li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  header .layer.layer__product .layer__wp .layer_v1 > li {
    width: calc((100% - ((1 - 1) * 15px)) / 1);
    margin-right: 15px;
    margin-top: 15px;
  }
  header .layer.layer__product .layer__wp .layer_v1 > li:nth-child(1n) {
    margin-right: 0;
  }
  header .layer.layer__product .layer__wp .layer_v1 > li:nth-child(-n+1) {
    margin-top: 0;
  }
}
header .layer.layer__product .layer__wp .layer_v1 > li.on > ._inner {
  color: #d71921;
}
header .layer.layer__product .layer__wp .layer_v1 > li.on > .layer_v2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ._inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 0.16rem;
  width: 100%;
  height: 1.12rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ._inner .img {
  width: 1.12rem;
  height: 1.12rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ._inner .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ._inner .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0 0.08rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ._inner .i-arrow {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ._inner .i-arrow svg {
  width: 100%;
  height: 100%;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 {
  display: none;
  position: fixed;
  width: var(--offsetX);
  height: 100%;
  left: calc(var(--offsetX) * 1);
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.4rem 0;
  padding-left: 0.32rem;
  border-right: 1px solid #E6E6E6;
  overflow: auto;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #e6e6e6;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2::-webkit-scrollbar-thumb:vertical {
  background-color: #e6e6e6;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2::-webkit-scrollbar-width {
  width: 0.04rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: none;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li {
  margin-bottom: 0.24rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li.on > ._inner {
  color: #d71921;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li.on > ._inner span {
  background-size: 100% 100%;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li.on > .layer_v3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li:last-child {
  margin-bottom: 0;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ._inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 0.16rem;
  width: 100%;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ._inner .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding-right: 0.08rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ._inner .i-arrow {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ._inner .i-arrow svg {
  width: 100%;
  height: 100%;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 {
  display: none;
  position: fixed;
  width: var(--offsetX);
  height: 100%;
  left: calc(var(--offsetX) * 2);
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.4rem 0;
  padding-left: 0.32rem;
  border-right: 1px solid #E6E6E6;
  overflow: auto;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #e6e6e6;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3::-webkit-scrollbar-thumb:vertical {
  background-color: #e6e6e6;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3::-webkit-scrollbar-width {
  width: 0.04rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: none;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li {
  margin-bottom: 0.24rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li.on > ._inner {
  color: #d71921;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li.on > ._inner span {
  background-size: 100% 100%;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li.on > .layer_v4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li:last-child {
  margin-bottom: 0;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ._inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 0.16rem;
  width: 100%;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ._inner .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding-right: 0.08rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 {
  display: none;
  position: fixed;
  width: var(--offsetX);
  height: 100%;
  left: calc(var(--offsetX) * 3);
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.4rem 0;
  padding-left: 0.32rem;
  overflow: auto;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #e6e6e6;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4::-webkit-scrollbar-thumb:vertical {
  background-color: #e6e6e6;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4::-webkit-scrollbar-width {
  width: 0.04rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: none;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li {
  margin-bottom: 0.4rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li.on .go-detail {
  color: #d71921;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li:last-child {
  margin-bottom: 0;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li > ._inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li > ._inner .img {
  width: 2rem;
  height: 2rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li > ._inner .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li > ._inner .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.16rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li > ._inner .go-detail {
  margin-top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li > ._inner .go-detail .i-arrow {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: auto;
}
header .layer.layer__product .layer__wp .layer_v1 > li > ul.layer_v2 > li > ul.layer_v3 > li > ul.layer_v4 > li > ._inner .go-detail .i-arrow svg {
  width: 100%;
  height: 100%;
}
header .layer.layer__support .layer__wp {
  padding: 0.64rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header .layer.layer__support .layer__wp .left-layout {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 68.18%;
  -ms-flex: 0 1 68.18%;
  flex: 0 1 68.18%;
  border-right: 1px solid #E6E6E6;
}
header .layer.layer__support .layer__wp .left-layout .href-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1.12rem;
}
@media screen and (min-width: 800px) {
  header .layer.layer__support .layer__wp .left-layout .href-list .href-item {
    width: calc((100% - ((4 - 1) * 1.12rem)) / 4);
    margin-right: 1.12rem;
    margin-top: 1.12rem;
  }
  header .layer.layer__support .layer__wp .left-layout .href-list .href-item:nth-child(4n) {
    margin-right: 0;
  }
  header .layer.layer__support .layer__wp .left-layout .href-list .href-item:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  header .layer.layer__support .layer__wp .left-layout .href-list .href-item {
    width: calc((100% - ((1 - 1) * 15px)) / 1);
    margin-right: 15px;
    margin-top: 15px;
  }
  header .layer.layer__support .layer__wp .left-layout .href-list .href-item:nth-child(1n) {
    margin-right: 0;
  }
  header .layer.layer__support .layer__wp .left-layout .href-list .href-item:nth-child(-n+1) {
    margin-top: 0;
  }
}
header .layer.layer__support .layer__wp .left-layout .href-list .href-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
header .layer.layer__support .layer__wp .left-layout .href-list .href-item a .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.28rem;
  height: 1.28rem;
  background-color: #F7F8FA;
  border-radius: 50%;
}
header .layer.layer__support .layer__wp .left-layout .href-list .href-item a .img img {
  width: 0.48rem;
  height: 0.48rem;
  object-fit: contain;
}
header .layer.layer__support .layer__wp .left-layout .href-list .href-item a span {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.16rem;
}
header .layer.layer__support .layer__wp .right-layout {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
header .layer.layer__support .layer__wp .right-layout .layout-inner {
  padding-left: 1.2rem;
}
header .layer.layer__support .layer__wp .right-layout .layout-inner .layout-row {
  margin-top: 0.4rem;
}
header .layer.layer__support .layer__wp .right-layout .layout-inner .layout-row:first-child {
  margin-top: 0;
}
header .layer.layer__support .layer__wp .right-layout .layout-inner .layout-row .text {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
header .layer.layer__support .layer__wp .right-layout .layout-inner .layout-row .number {
  font-family: "fontFamily-Num";
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #d71921;
  margin-top: 0.08rem;
}
header .layer.layer__lang .layer__wp .layer__list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
header .layer.layer__lang .layer__wp .layer__list .layer__item {
  margin: 0 0.44rem;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  min-height: auto;
  background-color: transparent;
  border-radius: 0;
}
header .layer.layer__lang .layer__wp .layer__list .layer__item:nth-child(4n) {
  margin: 0 0.44rem;
}
header .layer.layer__lang .layer__wp .layer__list .layer__item a {
  padding: 0;
}
header .layer.layer__lang .layer__wp .layer__list .layer__item a:hover .img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
header .layer.layer__lang .layer__wp .layer__list .layer__item a:hover .sub__name {
  color: #d71921;
}
header .layer.layer__lang .layer__wp .layer__list .layer__item a .img {
  width: 25px;
  height: 25px;
}
header .layer.layer__lang .layer__wp .layer__list .layer__item a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .layer.layer__lang .layer__wp .layer__list .layer__item a .name {
  margin-top: 0.1rem;
  margin-bottom: 0;
  font-size: 0.16rem;
  opacity: 0.8;
}
header .layer.layer__lang .layer__wp .layer__list .layer__item a .sub__name {
  margin-top: 0.12rem;
  font-size: 0.18rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .layer.layer__search .layer__wp {
  position: relative;
  padding: 0.64rem 0;
}
header .layer.layer__search .layer__wp .layer__content .close {
  cursor: pointer;
  position: absolute;
  top: 0.4rem;
  right: 0;
  width: 0.24rem;
  height: 0.24rem;
}
header .layer.layer__search .layer__wp .layer__content .close svg {
  width: 100%;
  height: 100%;
}
header .layer.layer__search .layer__wp .layer__content .search-input {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 8.88rem;
  height: 0.56rem;
  margin: 0 auto;
}
header .layer.layer__search .layer__wp .layer__content .search-input input::-webkit-input-placeholder {
  color: #A3A3A3;
}
header .layer.layer__search .layer__wp .layer__content .search-input input::-moz-placeholder {
  color: #A3A3A3;
}
header .layer.layer__search .layer__wp .layer__content .search-input input:-moz-placeholder {
  color: #A3A3A3;
}
header .layer.layer__search .layer__wp .layer__content .search-input input:-ms-input-placeholder {
  color: #A3A3A3;
}
header .layer.layer__search .layer__wp .layer__content .search-input textarea::-webkit-input-placeholder {
  color: #A3A3A3;
}
header .layer.layer__search .layer__wp .layer__content .search-input textarea::-moz-placeholder {
  color: #A3A3A3;
}
header .layer.layer__search .layer__wp .layer__content .search-input textarea:-moz-placeholder {
  color: #A3A3A3;
}
header .layer.layer__search .layer__wp .layer__content .search-input textarea:-ms-input-placeholder {
  color: #A3A3A3;
}
header .layer.layer__search .layer__wp .layer__content .search-input input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  padding-left: 0.16rem;
  color: #1E1E1E;
  border: 1px solid #E6E6E6;
  font-size: 0.16rem;
}
header .layer.layer__search .layer__wp .layer__content .search-input input:valid {
  opacity: 1;
}
header .layer.layer__search .layer__wp .layer__content .search-input .search-go a {
  width: 0.56rem;
  height: 0.56rem;
  background: -webkit-linear-gradient(225deg, transparent 0.06rem, #d71921 0);
  background: linear-gradient(225deg, transparent 0.06rem, #d71921 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
header .layer.layer__search .layer__wp .layer__content .search-input .search-go a .icon {
  width: 0.24rem;
  height: 0.24rem;
  color: white;
}
header .layer.layer__search .layer__wp .layer__content .search-input .search-go a .icon svg {
  width: 100%;
  height: 100%;
}
header.JsFixed {
  position: fixed;
  top: 0;
}
@media screen and (min-width: 800px) {
  header.isScroll, header.show-layer, header:hover {
    --fcolor: #1E1E1E;
  }
  header.isScroll .top-head_nav, header.show-layer .top-head_nav, header:hover .top-head_nav {
    background-color: #F6F6F6;
    border-bottom: 1px solid transparent;
  }
  header.isScroll .g-head, header.show-layer .g-head, header:hover .g-head {
    background: white;
    border-bottom: 1px solid #E6E6E6;
  }
  header.isScroll .g-head .wal .g-head-main .logo-box .img img, header.show-layer .g-head .wal .g-head-main .logo-box .img img, header:hover .g-head .wal .g-head-main .logo-box .img img {
    display: none;
  }
  header.isScroll .g-head .wal .g-head-main .logo-box .img img._hover, header.show-layer .g-head .wal .g-head-main .logo-box .img img._hover, header:hover .g-head .wal .g-head-main .logo-box .img img._hover {
    display: block;
  }
  header.isScroll .g-head .wal .g-head-main .center-nav > ul > .nav-item.active > a, header.show-layer .g-head .wal .g-head-main .center-nav > ul > .nav-item.active > a, header:hover .g-head .wal .g-head-main .center-nav > ul > .nav-item.active > a {
    color: #d71921;
  }
}

.choose-product-dialog {
  position: fixed;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.choose-product-dialog.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.choose-product-dialog .g-text-hover {
  --color: rgba(215, 25, 33, 1);
}
.choose-product-dialog .choose-product-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 76%;
  height: calc(100% - .8rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: white;
  padding: 0.24rem 0.32rem;
}
.choose-product-dialog .choose-product-container .choose-product-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.4rem;
  padding-bottom: 0.08rem;
  border-bottom: 1px solid #d71921;
}
.choose-product-dialog .choose-product-container .choose-product-head .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #d71921;
  font-family: "fontFamily-B";
}
.choose-product-dialog .choose-product-container .choose-product-head .close {
  width: 0.24rem;
  height: 0.24rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/layer-close.png) center center no-repeat;
  background-size: contain;
  margin-left: auto;
}
.choose-product-dialog .choose-product-container .choose-product-body {
  height: calc(100% - .4rem);
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container {
  width: 100%;
  height: 100%;
  display: none;
  overflow: auto;
}
@media screen and (min-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #e6e6e6;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container::-webkit-scrollbar-thumb:vertical {
    background-color: #e6e6e6;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: none;
  }
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container.on {
  display: block;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #E6E6E6;
  padding: 0.4rem 0;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-label {
  font-size: 0.2rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 24%;
  -ms-flex: 0 1 24%;
  flex: 0 1 24%;
  padding-right: 0.2rem;
  font-family: "fontFamily-B";
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li {
  cursor: pointer;
  height: 1.12rem;
  width: 100%;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/product_bg.png) center center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li:nth-child(3n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li:nth-child(1n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li:hover > ._inner {
  color: #d71921;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 0.16rem;
  width: 100%;
  height: 1.12rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .img {
  width: 1.12rem;
  height: 1.12rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0 0.08rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .i-arrow {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .i-arrow svg {
  width: 100%;
  height: 100%;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li {
  cursor: pointer;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li:nth-child(3n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li {
    width: calc((100% - ((2 - 1) * 8px)) / 2);
    margin-right: 8px;
    margin-top: 8px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li:nth-child(2n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li:nth-child(-n+2) {
    margin-top: 0;
  }
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li:hover > ._inner {
  color: #d71921;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-right: 0.16rem;
  width: 100%;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .img {
  position: relative;
  width: 100%;
  padding-top: 60.9%;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.16rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .info .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding-right: 0.08rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .info .i-arrow {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: auto;
}
.choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .info .i-arrow svg {
  width: 100%;
  height: 100%;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container {
  display: none;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 0.24rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container.on {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0.16rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-head .go-back-box .go-back {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-head .go-back-box .go-back::before {
  content: /static/pages/css/"";
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/back.png) center center no-repeat;
  background-size: contain;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-head .title {
  font-family: "fontFamily-B";
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: auto;
  padding-right: 0.05rem;
}
@media screen and (min-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #e6e6e6;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list::-webkit-scrollbar-thumb:vertical {
    background-color: #e6e6e6;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: none;
  }
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li {
  height: 3.28rem;
  border: 1px solid #E6E6E6;
}
@media screen and (min-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li {
    width: calc((100% - ((4 - 1) * 0.32rem)) / 4);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li:nth-child(4n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li {
    width: calc((100% - ((1 - 1) * 15px)) / 1);
    margin-right: 15px;
    margin-top: 15px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li:nth-child(1n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li a {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0.24rem 0.32rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li a .img {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 2rem;
  height: 2rem;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li a .name {
  font-family: "fontFamily-B";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.16rem;
  line-height: 0.24rem;
}

.frame__load {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/load/load-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .frame__load {
    display: none;
  }
}
.frame__load.show {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.frame__load .frame__load-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.frame__load .frame__load-inner .frame__load-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.frame__load .frame__load-inner .frame__load-content.show {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.frame__load .frame__load-inner .frame__load-content .frame__load-num {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: white;
  opacity: 0.8;
}
.frame__load .frame__load-inner .frame__load-content .frame__load-animate {
  margin-top: 0.16rem;
  width: 100%;
}
.frame__load .frame__load-inner .frame__load-content .frame__load-animate img {
  width: 100%;
  height: auto;
  -webkit-mask: -webkit-linear-gradient(left, #000 0, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(90deg, #000 0, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: right top;
  mask-position: right top;
  -webkit-mask-size: 0 0;
  mask-size: 0 0;
  -webkit-animation-name: lightFn;
  animation-name: lightFn;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 4.5s;
  animation-duration: 4.5s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.frame__load .frame__load-inner .frame__load-content .frame__load-end-img {
  cursor: pointer;
  width: auto;
  height: 3rem;
}
.frame__load .frame__load-inner .frame__load-content .frame__load-end-img img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: none;
}
.frame__load .frame__load-inner .frame__load-content .frame__load-end-img img.show {
  display: block;
}
.frame__load .frame__load-inner .frame__load-content .frame__load-end-hand {
  width: 0.48rem;
  height: 0.48rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/load/i-hand.png) center center no-repeat;
  background-size: contain;
  -webkit-animation: handUp 1s;
  animation: handUp 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  margin-top: 0.32rem;
}
.frame__load .frame__load-inner .frame__load-content .frame__load-end-tip {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.6);
}
.frame__load .frame__load-inner .frame__load-content .frame__load-end-switch {
  cursor: pointer;
  margin-top: 0.2rem;
  width: 0.4rem;
  height: 0.24rem;
  border-radius: 0.13rem;
  border: 0.01rem solid #FFFFFF;
  position: relative;
}
.frame__load .frame__load-inner .frame__load-content .frame__load-end-switch::before {
  content: /static/pages/css/"";
  position: absolute;
  height: 0.16rem;
  width: 0.16rem;
  top: 0.03rem;
  left: 0.04rem;
  background: #D71921;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.frame__load .frame__load-inner .frame__load-content .frame__load-end-switch.show::before {
  background: #009758;
  left: 0.2rem;
}

.g-btn a,
.g-btn .a {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 2.08rem;
  height: 0.56rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0.16rem 0 0.24rem;
  color: white;
}
.g-btn a::before,
.g-btn .a::before {
  content: /static/pages/css/"";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/btn-fill.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  background-size: 100% 100%;
  z-index: -1;
}
.g-btn a .btn-text,
.g-btn .a .btn-text {
  font-family: "fontFamily-R";
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.g-btn a::after,
.g-btn .a::after {
  content: /static/pages/css/"";
  width: 0.24rem;
  height: 0.24rem;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/btn-arrow.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  background-size: contain;
}
.g-btn a:hover,
.g-btn .a:hover {
  opacity: 0.8;
}
.g-btn.transparent a,
.g-btn.transparent .a {
  background-color: transparent;
  -webkit-clip-path: none;
  clip-path: none;
}
.g-btn.transparent a::before,
.g-btn.transparent .a::before {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/border-white.png);
}
@media screen and (min-width: 800px) {
  .g-btn.transparent a:hover::before,
  .g-btn.transparent .a:hover::before {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/btn-fill.png);
  }
}
.g-btn._black a,
.g-btn._black .a {
  color: #1E1E1E;
  -webkit-transition: none;
  transition: none;
}
@media screen and (min-width: 800px) {
  .g-btn._black a:hover,
  .g-btn._black .a:hover {
    color: white;
  }
  .g-btn._black a:hover::after,
  .g-btn._black .a:hover::after {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/btn-arrow.png);
  }
  .g-btn._black a:hover::before,
  .g-btn._black .a:hover::before {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/btn-fill.png);
  }
}
.g-btn._black a::before,
.g-btn._black .a::before {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/border-black.png);
}
.g-btn._black a::after,
.g-btn._black .a::after {
  content: /static/pages/css/"";
  width: 0.24rem;
  height: 0.24rem;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/btn-arrow-black.png);
}

.g-section-nav {
  background-color: #F7F8FA;
}
.g-section-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 0.72rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-section-nav ul li {
  position: relative;
  height: 100%;
  margin-right: 0.8rem;
}
.g-section-nav ul li:last-child {
  margin-right: 0;
}
.g-section-nav ul li.on::after {
  display: block;
}
.g-section-nav ul li.on a {
  color: #d71921;
}
.g-section-nav ul li::after {
  content: /static/pages/css/"";
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #d71921;
}
.g-section-nav ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  font-size: 0.16rem;
  line-height: 0.24rem;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scale-img .img {
  overflow: hidden;
}
.scale-img .img img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.scale-img:hover .img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.head-title {
  position: relative;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
}
.head-title::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  left: 0;
  bottom: -0.28rem;
  background-color: #d71921;
}

.common-title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
}
.common-title span {
  position: relative;
}
.common-title span::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  left: 0;
  bottom: -0.28rem;
  background-color: #d71921;
}

.floor-search {
  padding: 0.8rem 0;
  background-color: white;
}
.floor-search .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.floor-search .wal .left-area {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 5.68rem;
  -ms-flex: 0 1 5.68rem;
  flex: 0 1 5.68rem;
}
.floor-search .wal .left-area .title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  color: #d71921;
  font-family: "fontFamily-B";
}
.floor-search .wal .left-area .context {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.32rem;
}
.floor-search .wal .right-area {
  width: 50%;
  margin-left: 0.16rem;
}
.floor-search .wal .right-area .search-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 0.56rem;
  padding: 0.16rem;
  border: 1px solid #D9D9D9;
}
.floor-search .wal .right-area .search-input input::-webkit-input-placeholder {
  color: #A6A6A6;
}
.floor-search .wal .right-area .search-input input::-moz-placeholder {
  color: #A6A6A6;
}
.floor-search .wal .right-area .search-input input:-moz-placeholder {
  color: #A6A6A6;
}
.floor-search .wal .right-area .search-input input:-ms-input-placeholder {
  color: #A6A6A6;
}
.floor-search .wal .right-area .search-input textarea::-webkit-input-placeholder {
  color: #A6A6A6;
}
.floor-search .wal .right-area .search-input textarea::-moz-placeholder {
  color: #A6A6A6;
}
.floor-search .wal .right-area .search-input textarea:-moz-placeholder {
  color: #A6A6A6;
}
.floor-search .wal .right-area .search-input textarea:-ms-input-placeholder {
  color: #A6A6A6;
}
.floor-search .wal .right-area .search-input input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.16rem;
}
.floor-search .wal .right-area .search-input .search-btn {
  cursor: pointer;
  width: 0.24rem;
  height: 0.24rem;
  margin-left: 0.16rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-search.png) center center no-repeat;
  background-size: contain;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.floor-search .wal .right-area .search-history {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.floor-search .wal .right-area .search-history .history-lable {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.floor-search .wal .right-area .search-history .history-list dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.floor-search .wal .right-area .search-history .history-list dl dd {
  cursor: pointer;
  position: relative;
  padding: 0 0.16rem;
}
.floor-search .wal .right-area .search-history .history-list dl dd a {
  color: #A6A6A6;
}
.floor-search .wal .right-area .search-history .history-list dl dd::after {
  content: /static/pages/css/"";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 16px;
  background-color: #D9D9D9;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.floor-search .wal .right-area .search-history .history-list dl dd:last-child::after {
  display: none;
}

.floor-help {
  padding-top: 1.2rem;
}
.floor-help .wal .floor-help-list {
  margin-top: 0.64rem;
}
.floor-help .wal .floor-help-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.floor-help .wal .floor-help-list ul li {
  cursor: pointer;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .floor-help .wal .floor-help-list ul li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .floor-help .wal .floor-help-list ul li:nth-child(3n) {
    margin-right: 0;
  }
  .floor-help .wal .floor-help-list ul li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .floor-help .wal .floor-help-list ul li {
    width: calc((100% - ((3 - 1) * 0px)) / 3);
    margin-right: 0px;
    margin-top: 0px;
  }
  .floor-help .wal .floor-help-list ul li:nth-child(3n) {
    margin-right: 0;
  }
  .floor-help .wal .floor-help-list ul li:nth-child(-n+3) {
    margin-top: 0;
  }
}
.floor-help .wal .floor-help-list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0.32rem;
  background: #F7F8FA;
}
.floor-help .wal .floor-help-list ul li a:hover {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.floor-help .wal .floor-help-list ul li a:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.floor-help .wal .floor-help-list ul li a::after {
  content: /static/pages/css/"";
  position: absolute;
  top: 0.4rem;
  right: 0.32rem;
  width: 0.24rem;
  height: 0.24rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-href.png);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.floor-help .wal .floor-help-list ul li a .img {
  width: 0.64rem;
  height: 0.64rem;
}
.floor-help .wal .floor-help-list ul li a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floor-help .wal .floor-help-list ul li a .title {
  font-size: 0.2rem;
  line-height: 0.24rem;
  margin-top: 0.64rem;
  font-family: "fontFamily-B";
}
.floor-help .wal .floor-help-list ul li a .context {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.08rem;
  color: #767676;
}
@charset "UTF-8";
.index-page .index-banner {
  overflow: hidden;
}
.index-page .index-banner .banner_wrapper .banner_main {
  position: relative;
  width: 100%;
}
.index-page .index-banner .banner_wrapper .banner_main .banner_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: calc(100vh);
}
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item {
  width: 100%;
  height: 100%;
}
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_img,
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_img img,
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_img video,
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_video img,
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_video video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_video {
  z-index: 1;
}
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .inner_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 1.36rem;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: 2;
  color: white;
}
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .inner_content .title {
  max-width: 50%;
  font-size: 1.12rem;
  line-height: 1.2rem;
}
.index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .inner_content .sub-title {
  font-size: 0.72rem;
  line-height: 0.8rem;
  max-width: 50%;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0.16rem;
  z-index: 2;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 2.08rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.16rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.16rem;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 16px;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  --present: 20%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 0.08rem;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg {
  display: none;
  --size: 24px;
  --border-width: 2px;
  --percent: 80;
  width: var(--size);
  height: var(--size);
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg circle {
  width: 100%;
  height: 100%;
  cx: calc(var(--size) / 2);
  cy: calc(var(--size) / 2);
  r: calc((var(--size) - var(--border-width)) / 2);
  fill: transparent;
  stroke: #8a94a1;
  stroke-width: var(--border-width);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateZ(270deg);
  -ms-transform: rotate(270deg);
  transform: rotateZ(270deg);
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg circle:nth-child(2) {
  stroke: #d71921;
  stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #8a94a1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span:last-child {
  margin-right: 0;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span.swiper-pagination-bullet-active svg {
  display: block;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span.swiper-pagination-bullet-active::after {
  background-color: #d71921;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .prev,
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .next {
  width: 24px;
  height: 24px;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/i-left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  background-size: contain;
}
.index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .next {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/i-right.png);
  margin-left: 24px;
}
.index-page .our-mission .our-mission__long-box {
  height: 100vh;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner {
  height: 100vh;
  opacity: 1;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding: 1.2rem 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #1E1E1E;
  opacity: 0;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container.js_show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .left-title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 4.4rem;
  -ms-flex: 0 1 4.4rem;
  flex: 0 1 4.4rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .context-Info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 6.88rem;
  -ms-flex: 0 1 6.88rem;
  flex: 0 1 6.88rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .context-Info .context {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .context-Info .g-btn {
  margin-top: 0.24rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .mission__content-head {
  max-width: 5.4rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .mission__content-head .mission__content-head-tit {
  font-size: 0.36rem;
  line-height: 0.42rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .mission__content-head .g-btn {
  margin-top: 0.57rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .mission__content-main {
  margin-top: auto;
  margin-left: auto;
  max-width: 5.96rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .mission__content-main .mission__content-main-inner {
  border-top: 1px solid white;
  padding-top: 0.3rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .mission__content-main .mission__content-main-inner .mission__content-main-inner-content {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  z-index: -1;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background .our-missoin__image-block {
  width: 100%;
  height: 100%;
  position: relative;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background .our-missoin__image-block .our-missoin__image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background .our-missoin__image-block .our-missoin__image-wrapper .our-mission__big-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  overflow: hidden;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background .our-mission__top-backgound {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background .our-mission__top-backgound img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .index-ability {
  padding: 1.2rem 0;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/bg01.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-size: cover;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-head .title::after {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body {
  margin-top: 1.12rem;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list {
  position: relative;
  overflow: hidden;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 5.68rem;
  -ms-flex: 0 1 5.68rem;
  flex: 0 1 5.68rem;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left .ico {
  width: 0.48rem;
  height: 0.48rem;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left .title {
  font-size: 0.32rem;
  line-height: 0.4rem;
  margin-top: 0.4rem;
  font-family: "fontFamily-B";
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left .context {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.16rem;
  color: #767676;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._right {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 6.88rem;
  -ms-flex: 0 1 6.88rem;
  flex: 0 1 6.88rem;
  margin-left: auto;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._right .img {
  width: 100%;
  height: 4rem;
  -webkit-clip-path: polygon(96% 0, 100% 7%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(96% 0, 100% 7%, 100% 100%, 0 100%, 0 0);
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  width: 5.68rem;
  bottom: 0.48rem;
  left: 0;
  z-index: 1;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 2.08rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.16rem;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 16px;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  --present: 20%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 0.08rem;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span svg {
  display: none;
  --size: 24px;
  --border-width: 2px;
  --percent: 80;
  width: var(--size);
  height: var(--size);
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span svg circle {
  width: 100%;
  height: 100%;
  cx: calc(var(--size) / 2);
  cy: calc(var(--size) / 2);
  r: calc((var(--size) - var(--border-width)) / 2);
  fill: transparent;
  stroke: rgba(30, 30, 30, 0.2);
  stroke-width: var(--border-width);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateZ(270deg);
  -ms-transform: rotate(270deg);
  transform: rotateZ(270deg);
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span svg circle:nth-child(2) {
  stroke: #d71921;
  stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: rgba(30, 30, 30, 0.2);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span:last-child {
  margin-right: 0;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span.swiper-pagination-bullet-active svg {
  display: block;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span.swiper-pagination-bullet-active::after {
  background-color: #d71921;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .arrow .prev,
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .arrow .next {
  width: 24px;
  height: 24px;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-prev_on.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  background-size: contain;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .arrow .next {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-next_on.svg);
  margin-left: 24px;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer {
  padding: 0.4rem 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li {
  padding: 0 0.24rem;
  border-right: 1px solid #e6e6e6;
}
@media screen and (min-width: 800px) {
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li {
    width: calc((100% - ((4 - 1) * 0px)) / 4);
    margin-right: 0px;
    margin-top: 0px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li:nth-child(4n) {
    margin-right: 0;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li {
    width: calc((100% - ((2 - 1) * 10px)) / 2);
    margin-right: 10px;
    margin-top: 10px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li:nth-child(2n) {
    margin-right: 0;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li:nth-child(-n+2) {
    margin-top: 0;
  }
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li:last-child {
  border-right: 0;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li .num {
  font-family: "fontFamily-Num";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 0.4rem;
  line-height: 0.48rem;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li .num .unit {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #A6A6A6;
}
.index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li .name {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.index-page .index-application-area {
  position: relative;
}
.index-page .index-application-area > .bg-img {
  position: relative;
  padding-top: 50%;
  z-index: 1;
}
.index-page .index-application-area > .bg-img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.index-page .index-application-area .swiper-dots ._dot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0.56rem;
  padding: 0.16rem;
  border-radius: 0.28rem;
  z-index: 1;
  background-color: transparent !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .index-application-area .swiper-dots ._dot.to_left {
  -webkit-transform: rotateY(180deg) translate(100%, 0);
  transform: rotateY(180deg) translate(100%, 0);
}
.index-page .index-application-area .swiper-dots ._dot.to_left .name {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.index-page .index-application-area .swiper-dots ._dot .point {
  position: relative;
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.16rem;
}
.index-page .index-application-area .swiper-dots ._dot .point em {
  width: 0.04rem;
  height: 0.04rem;
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.index-page .index-application-area .swiper-dots ._dot .point::before {
  content: /static/pages/css/"";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  -webkit-animation: scaleMap 2s infinite linear;
  animation: scaleMap 2s infinite linear;
  background: -webkit-radial-gradient(center, ellipse, transparent 0%, rgba(215, 25, 33, 0.8) 20%, #d71921 100%);
  background: radial-gradient(ellipse at center, transparent 0%, rgba(215, 25, 33, 0.8) 20%, #d71921 100%);
}
.index-page .index-application-area .swiper-dots ._dot .point::after {
  content: /static/pages/css/"";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  -webkit-animation: scaleMapSmall 2s infinite linear -1s;
  animation: scaleMapSmall 2s infinite linear -1s;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0) 0%, #d71921 50%, #d71921 70%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, #d71921 50%, #d71921 70%);
}
.index-page .index-application-area .swiper-dots ._dot .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  white-space: nowrap;
}
.index-page .index-application-area .swiper-dots ._dot.on {
  background-color: white !important;
}
.index-page .index-application-area .wal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}
.index-page .index-application-area .wal .application-area-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1.2rem 0 1.6rem;
}
.index-page .index-application-area .wal .application-area-inner .title {
  width: 40%;
  position: relative;
  z-index: 1;
}
.index-page .index-application-area .wal .application-area-inner .context {
  position: relative;
  max-width: 4.48rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.64rem;
  margin-bottom: 0.3rem;
  z-index: 1;
}
.index-page .index-application-area .wal .application-area-inner .imgs-swiper {
  margin-top: auto;
  width: 17.08vw;
  height: 17.08vw;
  overflow: hidden;
}
.index-page .index-application-area .wal .application-area-inner .imgs-swiper ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 17.08vw;
  height: 17.08vw;
}
.index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0.32rem;
}
.index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li:hover .bg-img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li .bg-img {
  -webkit-clip-path: polygon(93% 0, 100% 7%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(93% 0, 100% 7%, 100% 100%, 0 100%, 0 0);
}
.index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li ._bottom {
  margin-top: auto;
}
.index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li ._bottom .img {
  width: 0.48rem;
  height: 0.48rem;
}
.index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li ._bottom .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li ._bottom .name {
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: white;
}
.index-page .index-product {
  padding: 1.2rem 0 1.36rem;
  background-color: #F7F8FA;
  overflow: hidden;
}
.index-page .index-product .wal .index-product-inner .index-product-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .index-product .wal .index-product-inner .index-product-head .arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate(0, 0.24rem);
  -ms-transform: translate(0, 0.24rem);
  transform: translate(0, 0.24rem);
}
.index-page .index-product .wal .index-product-inner .index-product-head .arrow .prev,
.index-page .index-product .wal .index-product-inner .index-product-head .arrow .next {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-prev_on.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 0.56rem;
  height: 0.56rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  background-size: 0.24rem 0.24rem;
  border: 1px solid #1E1E1E;
}
.index-page .index-product .wal .index-product-inner .index-product-head .arrow .prev:hover,
.index-page .index-product .wal .index-product-inner .index-product-head .arrow .next:hover {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-prev_hover.svg);
  background-color: #d71921;
  border-color: #d71921;
}
.index-page .index-product .wal .index-product-inner .index-product-head .arrow .prev.swiper-button-disabled,
.index-page .index-product .wal .index-product-inner .index-product-head .arrow .next.swiper-button-disabled {
  opacity: 0.2;
}
.index-page .index-product .wal .index-product-inner .index-product-head .arrow .next {
  margin-left: 0.16rem;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-next_on.svg);
}
.index-page .index-product .wal .index-product-inner .index-product-head .arrow .next:hover {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-next_hover.svg);
}
.index-page .index-product .wal .index-product-inner .index-product-body {
  margin-top: 0.64rem;
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li {
  width: calc((100% - .64rem) / 3);
  margin-right: 0.32rem;
  background-color: white;
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li:last-child {
  margin-right: 0;
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 4.4rem;
  padding: 0.32rem 0.4rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a:hover .img::after {
  opacity: 1;
  visibility: visible;
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .img {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 0.72rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .img::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 0.56rem;
  height: 0.56rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/href.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-size: contain;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .product-info .name {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: "fontFamily-B";
}
.index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .product-info .context {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #767676;
}
.index-page .index-product .wal .index-product-inner .index-product-body .href-list {
  margin-top: 0.32rem;
}
.index-page .index-product .wal .index-product-inner .index-product-body .href-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li {
  background: white;
}
@media screen and (min-width: 800px) {
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li {
    width: calc((100% - ((2 - 1) * 0.32rem)) / 2);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li:nth-child(2n) {
    margin-right: 0;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li:nth-child(1n) {
    margin-right: 0;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0.4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a:hover::before {
  width: 100%;
}
.index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a .name {
  font-size: 0.24rem;
  line-height: 0.4rem;
}
.index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a .name .icon {
  width: 0.4rem;
  height: 0.4rem;
  object-fit: contain;
  margin-right: 0.16rem;
}
.index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a::before {
  content: /static/pages/css/"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d71921;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a::after {
  content: /static/pages/css/"";
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/icon03.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  background-size: contain;
}
.index-page .index-responsibility {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 1.2rem 0;
  overflow: hidden;
}
.index-page .index-responsibility .index-responsibility-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.index-page .index-responsibility .index-responsibility-container .title {
  position: relative;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
}
.index-page .index-responsibility .index-responsibility-container .title::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  left: 50%;
  bottom: -0.28rem;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #d71921;
}
.index-page .index-responsibility .index-responsibility-container .context {
  max-width: 6.88rem;
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.68rem;
}
.index-page .index-responsibility .index-responsibility-container .g-btn {
  margin-top: 0.64rem;
}
.index-page .index-joinUs {
  width: 100%;
  min-height: 5.2rem;
  background-color: #F7F8FA;
}
.index-page .index-joinUs .wal {
  height: 100%;
}
.index-page .index-joinUs .wal .index-joinUs-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .index-joinUs .wal .index-joinUs-inner .c-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 50%;
  padding: 1.2rem 0 1.44rem;
}
.index-page .index-joinUs .wal .index-joinUs-inner .c-left .context {
  max-width: 4.48rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.64rem;
}
.index-page .index-joinUs .wal .index-joinUs-inner .c-left .g-btn {
  margin-top: 0.64rem;
}
.index-page .index-joinUs .wal .index-joinUs-inner .c-img {
  width: 50%;
}
.index-page .index-joinUs .wal .index-joinUs-inner .c-img .bg-img {
  right: 0;
  z-index: 0;
  left: auto;
}
.index-page .index-joinUs .wal .index-joinUs-inner .c-img .bg-img._bottom {
  width: 6.88rem;
  height: 4.48rem;
  top: 0.72rem;
}
.index-page .index-joinUs .wal .index-joinUs-inner .c-img .bg-img._top {
  top: 1.04rem;
  right: 0.32rem;
  left: auto;
  width: 7.76rem;
  height: 4.96rem;
  z-index: 1;
}
.index-page .index-news {
  padding: 2rem 0 1.6rem;
}
.index-page .index-news .wal .index-news-inner .news-list {
  margin-top: 0.64rem;
}
.index-page .index-news .wal .index-news-inner .news-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.index-page .index-news .wal .index-news-inner .news-list ul li {
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
  padding: 0.4rem 0;
}
.index-page .index-news .wal .index-news-inner .news-list ul li:first-child {
  padding-top: 0;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a ._left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 4.8rem;
  -ms-flex: 0 1 4.8rem;
  flex: 0 1 4.8rem;
  padding-right: 0.32rem;
  border-right: 1px dotted #D9D9D9;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a ._left .img {
  width: 3.28rem;
  height: 2.08rem;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a ._left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a ._left .time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #CCCCCC;
  margin-left: auto;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a ._left .time .year {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a ._left .time .date {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 0.32rem;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a ._right .title {
  font-family: "fontFamily-B";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.index-page .index-news .wal .index-news-inner .news-list ul li a ._right .context {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #767676;
}
.index-page .index-news .wal .index-news-inner .bottom-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.64rem;
}

.about-page .about-banner {
  position: relative;
  padding-top: 37.5%;
  width: 100%;
}
.about-page .about-banner .bg-img {
  z-index: 0;
}
.about-page .about-introduce {
  padding: 0.64rem 0 1.36rem;
}
.about-page .about-introduce .wal .about-introduce-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-introduce .wal .about-introduce-head .title {
  width: 33.33%;
  padding-right: 0.1rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
}
.about-page .about-introduce .wal .about-introduce-head .title span {
  position: relative;
}
.about-page .about-introduce .wal .about-introduce-head .title span::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  left: 0;
  bottom: -0.28rem;
  background-color: #d71921;
}
.about-page .about-introduce .wal .about-introduce-head .info {
  width: 66.66%;
}
.about-page .about-introduce .wal .about-introduce-head .info .sub-title {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: "fontFamily-B";
  color: #d71921;
}
.about-page .about-introduce .wal .about-introduce-head .info .content {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.16rem;
}
.about-page .about-introduce .wal .about-introduce-head .info .content p {
  font-size: 0.16rem;
  line-height: 0.24rem;
  min-height: 0.15rem;
}
.about-page .about-introduce .wal .about-introduce-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.64rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/bg01.png) center center no-repeat;
  background-size: contain;
}
.about-page .about-introduce .wal .about-introduce-body .area-left {
  width: 33.33%;
}
.about-page .about-introduce .wal .about-introduce-body .area-left .year-box .lable {
  font-size: 0.24rem;
  line-height: 0.24rem;
}
.about-page .about-introduce .wal .about-introduce-body .area-left .year-box .year {
  font-size: 0.72rem;
  line-height: 0.8rem;
  margin-top: 0.08rem;
  color: #d71921;
  font-family: "fontFamily-Num";
}
.about-page .about-introduce .wal .about-introduce-body .area-left .video {
  cursor: pointer;
  margin-top: 0.48rem;
  width: 3.28rem;
}
.about-page .about-introduce .wal .about-introduce-body .area-left .video .img {
  position: relative;
  padding-top: 56%;
}
.about-page .about-introduce .wal .about-introduce-body .area-left .video .img::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.56rem;
  height: 0.56rem;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-play.png) center center no-repeat;
  background-size: contain;
  z-index: 1;
}
.about-page .about-introduce .wal .about-introduce-body .area-left .video .img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .about-introduce .wal .about-introduce-body .area-right {
  width: 66.66%;
}
.about-page .about-introduce .wal .about-introduce-body .area-right ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-page .about-introduce .wal .about-introduce-body .area-right ul li {
  width: calc((100% - .32rem) / 2);
  margin-right: 0.32rem;
  padding: 0.32rem 0;
  border-top: 1px solid #E6E6E6;
}
.about-page .about-introduce .wal .about-introduce-body .area-right ul li:nth-child(-n+2) {
  border-top: 0;
  padding-top: 0;
}
.about-page .about-introduce .wal .about-introduce-body .area-right ul li:nth-child(2n) {
  margin-right: 0;
}
.about-page .about-introduce .wal .about-introduce-body .area-right ul li .lable {
  font-size: 0.2rem;
  line-height: 0.24rem;
}
.about-page .about-introduce .wal .about-introduce-body .area-right ul li .content {
  margin-top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .about-introduce .wal .about-introduce-body .area-right ul li .content .num-box,
.about-page .about-introduce .wal .about-introduce-body .area-right ul li .content em {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.32rem;
  line-height: 0.4rem;
  color: #d71921;
  font-family: "fontFamily-Num";
}
.about-page .about-introduce .wal .about-introduce-body .area-right ul li .content em {
  margin: 0 0.05rem;
}
.about-page .about-culture {
  padding: 1.2rem 0;
  background: #F7F8FA;
}
.about-page .about-culture .wal .about-culture-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-culture .wal .about-culture-head .title {
  width: 33.33%;
  padding-right: 0.1rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
}
.about-page .about-culture .wal .about-culture-head .title span {
  position: relative;
}
.about-page .about-culture .wal .about-culture-head .title span::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  left: 0;
  bottom: -0.28rem;
  background-color: #d71921;
}
.about-page .about-culture .wal .about-culture-head .context {
  width: 66.66%;
  font-size: 0.16rem;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.about-page .about-culture .wal .about-culture-body {
  position: relative;
  margin-top: 0.64rem;
  height: 6.08rem;
}
.about-page .about-culture .wal .about-culture-body ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.about-page .about-culture .wal .about-culture-body ul li {
  width: 25%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.about-page .about-culture .wal .about-culture-body ul li:last-child {
  border-right: 0;
}
@media screen and (min-width: 800px) {
  .about-page .about-culture .wal .about-culture-body ul li.on .bg-img {
    display: block;
    z-index: 0;
  }
  .about-page .about-culture .wal .about-culture-body ul li.on .info {
    opacity: 1;
  }
  .about-page .about-culture .wal .about-culture-body ul li.on .info::after {
    opacity: 1;
    visibility: visible;
  }
  .about-page .about-culture .wal .about-culture-body ul li.on .info .info-inner .dot {
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/dot_on.png) center center no-repeat;
    background-size: contain;
  }
  .about-page .about-culture .wal .about-culture-body ul li.on .info .info-inner .text {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
  }
}
.about-page .about-culture .wal .about-culture-body ul li .bg-img {
  display: none;
}
.about-page .about-culture .wal .about-culture-body ul li .info {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  padding: 2.4rem 0.3rem 0.3rem;
  opacity: 0.8;
  z-index: 1;
}
.about-page .about-culture .wal .about-culture-body ul li .info::after {
  content: /static/pages/css/"";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-page .about-culture .wal .about-culture-body ul li .info .info-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-page .about-culture .wal .about-culture-body ul li .info .info-inner .dot {
  width: 0.48rem;
  height: 0.48rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/dot.png) center center no-repeat;
  background-size: contain;
}
.about-page .about-culture .wal .about-culture-body ul li .info .info-inner .name {
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: "fontFamily-B";
  margin-top: 0.16rem;
}
.about-page .about-culture .wal .about-culture-body ul li .info .info-inner .text {
  position: absolute;
  bottom: -0.05rem;
  left: 50%;
  width: 100%;
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.08rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, calc(100% + .3rem));
  -ms-transform: translate(-50%, calc(100% + .3rem));
  transform: translate(-50%, calc(100% + .3rem));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-page .about-news {
  padding: 1.2rem 0 0.64rem;
}
.about-page .about-news .wal .about-news-inner .news-list {
  margin-top: 0.64rem;
}
.about-page .about-news .wal .about-news-inner .news-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.about-page .about-news .wal .about-news-inner .news-list ul li {
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
  padding: 0.4rem 0;
}
.about-page .about-news .wal .about-news-inner .news-list ul li:first-child {
  padding-top: 0;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a ._left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 4.8rem;
  -ms-flex: 0 1 4.8rem;
  flex: 0 1 4.8rem;
  padding-right: 0.32rem;
  border-right: 1px dotted #D9D9D9;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a ._left .img {
  width: 3.28rem;
  height: 2.08rem;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a ._left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a ._left .time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #CCCCCC;
  margin-left: auto;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a ._left .time .year {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a ._left .time .date {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 0.32rem;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a ._right .title {
  font-family: "fontFamily-B";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.about-page .about-news .wal .about-news-inner .news-list ul li a ._right .context {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #767676;
}
.about-page .about-news .wal .about-news-inner .bottom-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.64rem;
}
.about-page .about-history {
  position: relative;
  padding: 1.2rem 0;
  min-height: 6.8rem;
  overflow: hidden;
}
.about-page .about-history .wal .about-history-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-history .wal .about-history-head .title {
  width: 33.33%;
  padding-right: 0.1rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
}
.about-page .about-history .wal .about-history-head .title span {
  position: relative;
}
.about-page .about-history .wal .about-history-head .title span::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  left: 0;
  bottom: -0.28rem;
  background-color: #d71921;
}
.about-page .about-history .wal .about-history-head .g-btn {
  margin-left: auto;
}
.about-page .about-history .wal .about-history-swiper {
  position: relative;
  margin-top: 0.72rem;
  padding: 0 1.2rem;
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container {
  position: relative;
  width: 100%;
  height: 1.2rem;
  border-bottom: 1px solid #1E1E1E;
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container::before {
  content: /static/pages/css/"";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 0.08rem;
  height: 0.08rem;
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
  background-color: #1E1E1E;
  border-radius: 50%;
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container::after {
  content: /static/pages/css/"";
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  width: 0.08rem;
  height: 0.08rem;
  background-color: #1E1E1E;
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
  border-radius: 50%;
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 1.2rem;
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li {
  position: relative;
  width: 33.33%;
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li.swiper-slide-prev .year {
  opacity: 1;
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li.swiper-slide-active .year {
  opacity: 1;
  color: #d71921;
  line-height: 1.12rem;
  font-size: 1.12rem;
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li.swiper-slide-active .context {
  opacity: 1;
  visibility: visible;
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li.swiper-slide-next .year {
  opacity: 1;
  left: auto;
  right: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li .year {
  opacity: 0;
  font-family: "fontFamily-B";
  position: absolute;
  font-size: 0.32rem;
  line-height: 0.4rem;
  left: 50%;
  bottom: 0.16rem;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: font-size 0.3s, opacity 0.3s, line-height 0.3s;
  transition: font-size 0.3s, opacity 0.3s, line-height 0.3s;
}
.about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li .context {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.24rem;
  bottom: -0.4rem;
  left: 50%;
  width: 6rem;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.about-page .about-history .wal .about-history-swiper .arrow .prev,
.about-page .about-history .wal .about-history-swiper .arrow .next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 0.56rem;
  height: 0.56rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  bottom: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #1E1E1E;
  z-index: 10;
}
.about-page .about-history .wal .about-history-swiper .arrow .prev.swiper-button-disabled,
.about-page .about-history .wal .about-history-swiper .arrow .next.swiper-button-disabled {
  opacity: 0.2;
}
.about-page .about-history .wal .about-history-swiper .arrow .prev:hover,
.about-page .about-history .wal .about-history-swiper .arrow .next:hover {
  background-color: #d71921;
  border-color: #d71921;
}
.about-page .about-history .wal .about-history-swiper .arrow .prev:hover::after,
.about-page .about-history .wal .about-history-swiper .arrow .next:hover::after {
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-prev-hover.svg) center center no-repeat;
  background-size: contain;
}
.about-page .about-history .wal .about-history-swiper .arrow .prev::after,
.about-page .about-history .wal .about-history-swiper .arrow .next::after {
  content: /static/pages/css/"";
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-prev.png) center center no-repeat;
  background-size: contain;
}
.about-page .about-history .wal .about-history-swiper .arrow .next {
  left: auto;
  right: 0;
}
.about-page .about-history .wal .about-history-swiper .arrow .next::after {
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-next.png) center center no-repeat;
  background-size: contain;
}
.about-page .about-history .wal .about-history-swiper .arrow .next:hover::after {
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-next-hover.svg) center center no-repeat;
  background-size: contain;
}

.history-page .history-banner {
  position: relative;
  padding-top: 37.5%;
  width: 100%;
}
.history-page .history-banner .bg-img {
  z-index: 0;
}
.history-page .history-list {
  position: relative;
  margin-top: 0.64rem;
  padding-bottom: 2.8rem;
}
.history-page .history-list .wal .bg-img {
  height: 6.8rem;
  top: auto;
  bottom: 0;
}
.history-page .history-list .wal ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.history-page .history-list .wal ul::after {
  content: /static/pages/css/"";
  position: absolute;
  width: 0.02rem;
  height: calc(100% - .8rem);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #d71921;
}
.history-page .history-list .wal ul li {
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-top: 1px solid;
  -webkit-border-image: -webkit-linear-gradient(left, rgba(230, 230, 230, 0), #e6e6e6) 1 1;
  border-image: linear-gradient(90deg, rgba(230, 230, 230, 0), #e6e6e6) 1 1;
  padding: 0.08rem 1.35rem 0.32rem 0;
  min-height: 0.8rem;
  margin-right: auto;
  z-index: 1;
}
.history-page .history-list .wal ul li::after {
  content: /static/pages/css/"";
  position: absolute;
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  top: 0;
  right: 0;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/history/icon01.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-size: contain;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  background-color: transparent;
  z-index: 1;
}
.history-page .history-list .wal ul li:first-child {
  margin-top: 0.8rem;
}
.history-page .history-list .wal ul li:nth-child(2n) {
  padding: 0.08rem 0 0.32rem 1.35rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: 0;
  -webkit-border-image: -webkit-linear-gradient(right, rgba(230, 230, 230, 0), #e6e6e6) 1 1;
  border-image: linear-gradient(270deg, rgba(230, 230, 230, 0), #e6e6e6) 1 1;
}
.history-page .history-list .wal ul li:nth-child(2n)::after {
  top: 0;
  left: 0;
  right: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.history-page .history-list .wal ul li:nth-child(2n) .year {
  right: auto;
  left: 1.35rem;
}
.history-page .history-list .wal ul li:nth-child(2n) .context p {
  text-align: left;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.history-page .history-list .wal ul li .year {
  position: absolute;
  font-family: "fontFamily-Num";
  font-size: 0.32rem;
  line-height: 0.4rem;
  top: -0.08rem;
  right: 1.35rem;
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  color: #d71921;
}
.history-page .history-list .wal ul li .context p {
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.history-page .history-list .wal ul li .context p:only-child::before {
  display: none;
}
.history-page .history-list .wal ul li .context p::before {
  content: /static/pages/css/"";
  width: 0.04rem;
  height: 0.04rem;
  background-color: #1E1E1E;
  margin-top: 0.1rem;
  border-radius: 50%;
  margin-right: 0.08rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.productServes-page .banner_container {
  overflow: hidden;
}
.productServes-page .banner_container .banner_wrapper .banner_main {
  position: relative;
  width: 100%;
}
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item {
  width: 100%;
}
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 37.5%;
}
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_img,
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_img img,
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_img video,
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_video img,
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_video video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_video {
  z-index: 1;
}
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .inner_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 1.36rem;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: 2;
  color: white;
}
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .inner_content .title {
  max-width: 50%;
  font-size: 1.12rem;
  line-height: 1.2rem;
}
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .inner_content .sub-title {
  font-size: 0.72rem;
  line-height: 0.8rem;
  max-width: 50%;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0.16rem;
  z-index: 2;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 2.08rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.16rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.16rem;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 16px;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  --present: 20%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 0.08rem;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg {
  display: none;
  --size: 24px;
  --border-width: 2px;
  --percent: 80;
  width: var(--size);
  height: var(--size);
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg circle {
  width: 100%;
  height: 100%;
  cx: calc(var(--size) / 2);
  cy: calc(var(--size) / 2);
  r: calc((var(--size) - var(--border-width)) / 2);
  fill: transparent;
  stroke: #8a94a1;
  stroke-width: var(--border-width);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateZ(270deg);
  -ms-transform: rotate(270deg);
  transform: rotateZ(270deg);
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg circle:nth-child(2) {
  stroke: #d71921;
  stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #8a94a1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span:last-child {
  margin-right: 0;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span.swiper-pagination-bullet-active svg {
  display: block;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span.swiper-pagination-bullet-active::after {
  background-color: #d71921;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .prev,
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .next {
  width: 24px;
  height: 24px;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/i-left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  background-size: contain;
}
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .next {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/i-right.png);
  margin-left: 24px;
}
.productServes-page .floor-product {
  padding: 1.2rem 0;
  background: #F7F8FA;
}
.productServes-page .floor-product .wal .product-area {
  margin-top: 1.2rem;
}
.productServes-page .floor-product .wal .product-area:first-child {
  margin-top: 0;
}
.productServes-page .floor-product .wal .product-area .product-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 4.16rem;
}
.productServes-page .floor-product .wal .product-area .product-head .product-head-info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 5.68rem;
  -ms-flex: 0 1 5.68rem;
  flex: 0 1 5.68rem;
}
.productServes-page .floor-product .wal .product-area .product-head .product-head-info .context {
  margin-top: 0.64rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.productServes-page .floor-product .wal .product-area .product-head .product-head-info .g-btn {
  margin-top: 0.64rem;
}
.productServes-page .floor-product .wal .product-area .product-head .product-coverImg {
  width: 50%;
  margin-left: 0.16rem;
  height: 4.16rem;
  background-color: white;
  overflow: hidden;
}
.productServes-page .floor-product .wal .product-area .product-head .product-coverImg:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.productServes-page .floor-product .wal .product-area .product-head .product-coverImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productServes-page .floor-product .wal .product-area .product-list {
  margin-top: 0.4rem;
}
.productServes-page .floor-product .wal .product-area .product-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.productServes-page .floor-product .wal .product-area .product-list ul li {
  background-color: white;
}
@media screen and (min-width: 800px) {
  .productServes-page .floor-product .wal .product-area .product-list ul li {
    width: calc((100% - ((4 - 1) * 0.32rem)) / 4);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li:nth-child(4n) {
    margin-right: 0;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .productServes-page .floor-product .wal .product-area .product-list ul li {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li:nth-child(1n) {
    margin-right: 0;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.productServes-page .floor-product .wal .product-area .product-list ul li a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 3.6rem;
  padding: 0.24rem 0.32rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.productServes-page .floor-product .wal .product-area .product-list ul li a:hover .img::after {
  opacity: 1;
  visibility: visible;
}
.productServes-page .floor-product .wal .product-area .product-list ul li a .img {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 0.4rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.productServes-page .floor-product .wal .product-area .product-list ul li a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.productServes-page .floor-product .wal .product-area .product-list ul li a .img::after {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 0.56rem;
  height: 0.56rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/href.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-size: contain;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.productServes-page .floor-product .wal .product-area .product-list ul li a .product-info .name {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: "fontFamily-B";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.productServes-page .floor-product .wal .product-area .product-list ul li a .product-info .series {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #767676;
  margin-top: 0.08rem;
}
.productServes-page .floor-solution {
  padding-top: 1.2rem;
}
.productServes-page .floor-solution .wal .floor-solution-list {
  margin-top: 0.64rem;
}
.productServes-page .floor-solution .wal .floor-solution-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.productServes-page .floor-solution .wal .floor-solution-list ul li {
  cursor: pointer;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .productServes-page .floor-solution .wal .floor-solution-list ul li {
    width: calc((100% - ((4 - 1) * 0.32rem)) / 4);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li:nth-child(4n) {
    margin-right: 0;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .productServes-page .floor-solution .wal .floor-solution-list ul li {
    width: calc((100% - ((2 - 1) * 8px)) / 2);
    margin-right: 8px;
    margin-top: 8px;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li:nth-child(2n) {
    margin-right: 0;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li:nth-child(-n+2) {
    margin-top: 0;
  }
}
.productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .img {
  position: relative;
  width: 100%;
  padding-top: 60.9%;
}
.productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.16rem;
}
.productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .info .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding-right: 0.08rem;
}
.productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .info .i-arrow {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: auto;
}
.productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .info .i-arrow svg {
  width: 100%;
  height: 100%;
}
.productServes-page .floor-demand {
  padding-bottom: 1.2rem;
}

.productCenter-page .floor-search {
  padding-top: 0.64rem;
}
.productCenter-page .floor-product {
  padding: 0.4rem 0 1.6rem;
  background-color: #F7F8FA;
}
.productCenter-page .floor-product .wal .filter-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #D9D9D9;
}
.productCenter-page .floor-product .wal .filter-head .filter-lable {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.productCenter-page .floor-product .wal .filter-head .reset-filter {
  opacity: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 1rem;
}
.productCenter-page .floor-product .wal .filter-head .reset-filter img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.productCenter-page .floor-product .wal .filter-head .reset-filter span {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #d71921;
}
.productCenter-page .floor-product .wal .filter-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 2.4rem;
  -ms-flex: 0 1 2.4rem;
  flex: 0 1 2.4rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "fontFamily-B";
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-head .img {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.08rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-head .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-head span {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item {
  padding: 0.24rem 0;
  border-top: 1px solid #E6E6E6;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item:last-child {
  border-bottom: 1px solid #E6E6E6;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item.on .item-hd:before {
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-sub.png) center center no-repeat;
  background-size: contain;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item.on dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item .item-hd {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: "fontFamily-B";
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item .item-hd:before {
  content: /static/pages/css/"";
  width: 0.24rem;
  height: 0.24rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-plus.png) center center no-repeat;
  background-size: contain;
  margin-right: 0.08rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl {
  margin-top: 0.24rem;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl dd {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-bottom: 0.16rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl dd.on:before {
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-checkbox_on.png) center center no-repeat;
  background-size: contain;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl dd:last-child {
  margin-bottom: 0;
}
.productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl dd:before {
  content: /static/pages/css/"";
  width: 0.24rem;
  height: 0.24rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-checkbox.png) center center no-repeat;
  background-size: contain;
  margin-right: 0.08rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-right {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 10.48rem;
  -ms-flex: 0 1 10.48rem;
  flex: 0 1 10.48rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .super-result-title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  margin-bottom: 0.32rem;
  font-family: "fontFamily-B";
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result {
  margin-bottom: 1rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result:last-child {
  margin-bottom: 0;
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-title {
  display: inline-block;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: white;
  min-width: 3.28rem;
  background-color: #d71921;
  padding: 0 0.4rem 0 0.16rem;
  -webkit-clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list {
  padding-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #d71921;
}
@media screen and (min-width: 800px) {
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li:nth-child(3n) {
    margin-right: 0;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li {
    width: calc((100% - ((1 - 1) * 16px)) / 1);
    margin-right: 16px;
    margin-top: 16px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li:nth-child(1n) {
    margin-right: 0;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.24rem 0.32rem;
  min-height: 4.32rem;
  background-color: white;
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .img {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .name {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: "fontFamily-B";
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .context {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #767676;
  margin-top: 0.08rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .learn-more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #d71921;
  margin-top: 0.24rem;
}
.productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .learn-more::after {
  content: /static/pages/css/"";
  width: 0.24rem;
  height: 0.24rem;
  background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-more.png) center center no-repeat;
  background-size: contain;
}

.honoraryPatent-page .page__box {
  padding-top: 0.64rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .honoraryPatent-page .page__box {
    padding-top: 32px;
    padding-bottom: 64px;
  }
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-nav .page__box-nav-inner {
  overflow: auto;
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-nav .page__box-nav-inner ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.01rem solid #E6E6E6;
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-nav .page__box-nav-inner ul li {
  cursor: pointer;
  font-size: 0.4rem;
  line-height: 0.48rem;
  color: #767676;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.8rem;
  padding-bottom: 0.2rem;
  border-bottom: 0.04rem solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-nav .page__box-nav-inner ul li:last-child {
  margin-right: 0;
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-nav .page__box-nav-inner ul li.on {
  font-family: "fontFamily-B";
  color: #1E1E1E;
  border-bottom: 0.04rem solid #d71921;
}
@media screen and (max-width: 800px) {
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-nav .page__box-nav-inner ul li {
    font-size: 24px;
    line-height: 32px;
    margin-right: 32px;
    padding-bottom: 16px;
  }
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .context {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #767676;
}
@media screen and (max-width: 800px) {
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .context {
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
  }
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list {
    margin-top: 32px;
  }
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 800px) {
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column4 li {
    width: calc((100% - ((4 - 1) * 0.32rem)) / 4);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column4 li:nth-child(4n) {
    margin-right: 0;
  }
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column4 li:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column4 li {
    width: calc((100% - ((2 - 1) * 8px)) / 2);
    margin-right: 8px;
    margin-top: 8px;
  }
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column4 li:nth-child(2n) {
    margin-right: 0;
  }
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column4 li:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 800px) {
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column6 li {
    width: calc((100% - ((6 - 1) * 0.32rem)) / 6);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column6 li:nth-child(6n) {
    margin-right: 0;
  }
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column6 li:nth-child(-n+6) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column6 li {
    width: calc((100% - ((2 - 1) * 8px)) / 2);
    margin-right: 8px;
    margin-top: 8px;
  }
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column6 li:nth-child(2n) {
    margin-right: 0;
  }
  .honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul.column6 li:nth-child(-n+2) {
    margin-top: 0;
  }
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul li .img {
  width: 100%;
}
.honoraryPatent-page .page__box .page__box-container .page__box-wrapper .page__box-body .list ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lookFuture .page__list .page__list-container .page__list-wrapper {
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li {
  margin-bottom: 0.64rem;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li:last-child {
  margin-bottom: 0;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li:nth-child(2n) a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .img {
  width: 6.88rem;
  height: 4rem;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content {
  width: 6.56rem;
  padding: 0.32rem 0;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content .title {
  position: relative;
  font-size: 0.32rem;
  line-height: 0.4rem;
  padding-bottom: 0.32rem;
  font-family: "fontFamily-B";
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content .title::before {
  content: /static/pages/css/"";
  display: block;
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  bottom: 0;
  left: 0;
  background-color: #d71921;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content .content {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content .content p {
  font-size: 0.16rem;
  line-height: 0.24rem;
  min-height: 0.12rem;
}

@media screen and (max-width: 800px) {
  * {
    --totalH: 44px;
    --headH: 44px;
    --topHeadh: .4rem;
  }

  body.jsShowNav {
    overflow-y: hidden;
  }
  body.jsShowNav .mb-sidebar {
    left: 0 !important;
  }
  body.jsShowNav header {
    z-index: 100;
  }

  .g-btn a,
  .g-btn .a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 152px;
    height: 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #d71921;
    padding: 0 16px;
    color: white;
  }
  .g-btn a .btn-text,
  .g-btn .a .btn-text {
    font-family: "fontFamily-R";
    font-size: 12px;
    line-height: 24px;
  }
  .g-btn a:hover,
  .g-btn .a:hover {
    opacity: 1;
  }
  .g-btn a::after,
  .g-btn .a::after {
    content: /static/pages/css/"";
    width: 24px !important;
    height: 24px !important;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/btn-arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-color: transparent;
    background-size: contain;
  }

  .g-cookie__container {
    position: fixed;
    bottom: 15px;
    right: 15px;
    left: 15px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background-color: white;
    border-radius: 8px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 14px rgba(43, 31, 31, 0.1);
  }
  .g-cookie__container.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .g-cookie__container .g-cookie__wal {
    max-width: 100%;
    padding: 24px 25px 28px 25px;
  }
  .g-cookie__container .g-cookie__wal .content {
    font-weight: 300;
    font-size: 14px;
    color: #1E1E1E;
    line-height: 16px;
    font-family: "fontFamily-R";
  }
  .g-cookie__container .g-cookie__wal .content a {
    color: #0A68DD;
    text-decoration: underline;
  }
  .g-cookie__container .g-cookie__wal .btn__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
  }
  .g-cookie__container .g-cookie__wal .btn__box .c_btn {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    cursor: pointer;
    padding: 14px 48px;
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    line-height: 16px;
    border-radius: 30px;
  }
  .g-cookie__container .g-cookie__wal .btn__box .c_btn:nth-child(1) {
    margin-right: 15px;
  }
  .g-cookie__container .g-cookie__wal .btn__box .c_btn.bg_blue {
    background: -webkit-linear-gradient(352deg, #0A68DD 0%, #00D3A1 100%);
    background: linear-gradient(98deg, #0A68DD 0%, #00D3A1 100%);
    border: none;
    color: white;
  }

  .head-title {
    position: relative;
    font-size: 24px;
    line-height: 32px;
    font-family: "fontFamily-B";
  }
  .head-title::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 24px;
    height: 4px;
    left: 0;
    bottom: -12px;
    background-color: #d71921;
  }

  .common-title {
    font-size: 24px;
    line-height: 32px;
    font-family: "fontFamily-B";
  }
  .common-title span {
    position: relative;
  }
  .common-title span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 24px;
    height: 4px;
    left: 0;
    bottom: -12px;
    background-color: #d71921;
  }

  header {
    position: relative !important;
    --fcolor: #1E1E1E;
    height: var(--totalH);
  }
  header .top-head_nav {
    display: none;
  }
  header .g-head {
    height: var(--headH);
    background-color: white;
    border-bottom: 0;
    top: 0;
  }
  header .g-head .wal {
    height: 100%;
    border-bottom: 1px solid #D9D9D9;
  }
  header .g-head .wal .center-nav {
    display: none;
  }
  header .g-head .wal .g-head-main {
    height: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .g-head .wal .g-head-main .logo-box {
    position: static;
    z-index: 98;
  }
  header .g-head .wal .g-head-main .logo-box .img {
    height: 20px;
  }
  header .g-head .wal .g-head-main .logo-box .img img {
    width: auto;
    display: none;
  }
  header .g-head .wal .g-head-main .logo-box .img img._hover {
    display: block;
  }
  header .g-head .wal .g-head-main .g-head-right {
    position: relative;
  }
  header .g-head .wal .g-head-main .g-head-right .href-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  header .g-head .wal .g-head-main .g-head-right .search .search-btn {
    cursor: pointer;
    margin-left: 16px;
  }
  header .g-head .wal .g-head-main .g-head-right .search .search-btn .icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--fcolor);
  }
  header .g-head .wal .g-head-main .g-head-right .search .search-btn .icon svg {
    width: 24px;
    height: 24px;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 100;
    padding: 10px 16px;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar.show {
    left: 0;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .close {
    margin-left: auto;
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/layer-close.png) center center no-repeat;
    background-size: contain;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input {
    position: relative;
    margin-top: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    padding: 0 0 8px 40px;
    border-bottom: 1px solid #D9D9D9;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input input::-webkit-input-placeholder {
    color: #A3A3A3;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input input::-moz-placeholder {
    color: #A3A3A3;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input input:-moz-placeholder {
    color: #A3A3A3;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input input:-ms-input-placeholder {
    color: #A3A3A3;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input textarea::-webkit-input-placeholder {
    color: #A3A3A3;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input textarea::-moz-placeholder {
    color: #A3A3A3;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input textarea:-moz-placeholder {
    color: #A3A3A3;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input textarea:-ms-input-placeholder {
    color: #A3A3A3;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input::before {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/i-search.png) center center no-repeat;
    background-size: contain;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  header .g-head .wal .g-head-main .g-head-right .search .mb-search-sidebar .search-input .search-btn a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 80px;
    height: 40px;
    background-color: #F6F6F6;
    border-radius: 4px;
    font-size: 14px;
    line-height: 24px;
  }
  header .g-head .wal .g-head-main .g-head-right .sidebar-btn {
    margin-left: 16px;
  }
  header .g-head .wal .g-head-main .g-head-right .sidebar-btn .img .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  header .g-head .wal .g-head-main .layer.layer__search .layer__wp {
    padding: 2rem 26px 1.2rem;
    background: url(https://kcmsdata.kehua.com/upload/0515-image/image-shutong/header/layer__bg.png) bottom right no-repeat;
    background-size: 40%;
  }
  header .g-head .wal .g-head-main .layer.layer__search .layer__wp .layer__content .search-input input,
  header .g-head .wal .g-head-main .layer.layer__search .layer__wp .layer__content .search-input .search-go > a {
    font-size: 14px;
  }
  header .g-head .wal .g-head-main .layer.layer__search .layer__wp .layer__content .search-input .line {
    background-color: rgba(184, 184, 184, 0.6);
  }
  header .g-head .wal .g-head-main .mb-sidebar {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    z-index: 100;
    background-color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__head {
    height: var(--headH);
    padding: 0 16px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__head .sidebar_main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__head .sidebar_main .mb-logo a {
    display: inline-block;
    width: 100%;
    height: 20px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__head .sidebar_main .mb-logo a img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__head .sidebar_main .nav-close {
    margin-left: auto;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__head .sidebar_main .nav-close img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main {
    position: relative;
    height: calc(100% - var(--headH));
    padding-top: 16px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 16px 60px;
    height: 100%;
    overflow: auto;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item {
    border-bottom: 1px solid #D9D9D9;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item:has(.sub-nav) > a::after {
    display: block;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item > a::after {
    content: /static/pages/css/"";
    display: none;
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/back.png);
    background-size: contain;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item > a span {
    font-family: "fontFamily-B";
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transform: translateZ(-1);
    transform: translateZ(-1);
    background-color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav.show {
    left: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav.show.sub_v1 {
    z-index: 101;
    -webkit-transform: translateZ(1);
    transform: translateZ(1);
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav.show.sub_v2 {
    z-index: 102;
    -webkit-transform: translateZ(2);
    transform: translateZ(2);
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav.show.sub_v3 {
    z-index: 103;
    -webkit-transform: translateZ(3);
    transform: translateZ(3);
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: var(--headH);
    padding: 0 16px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-head .nav-back::after {
    content: /static/pages/css/"";
    display: block;
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/i-back.png) center center no-repeat;
    background-size: contain;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-head .nav-close::after {
    content: /static/pages/css/"";
    display: block;
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/layer-close.png) center center no-repeat;
    background-size: contain;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-head .nav-title {
    font-family: "fontFamily-B";
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 16px;
    height: 24px;
    padding: 0 20px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body {
    height: calc(100% - var(--headH));
    padding: 26px 16px;
    overflow: auto;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li {
    cursor: pointer;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #D9D9D9;
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li:nth-child(1n) {
    margin-right: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li:nth-child(1n) {
    margin-right: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li:has(.sub-nav) > ._inner::after {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li > ._inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li > ._inner::after {
    content: /static/pages/css/"";
    display: none;
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/i-right.png) center center no-repeat;
    background-size: contain;
    margin-left: auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body > ul > li > ._inner .name {
    font-family: "fontFamily-R";
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 24px;
    padding-right: 4px;
  }
}
@media screen and (max-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li {
    cursor: pointer;
    width: 100%;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/product_bg.png) center center no-repeat;
    background-size: cover;
    border-bottom: none;
    padding: 0;
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li:nth-child(1n) {
    margin-right: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li:nth-child(1n) {
    margin-right: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li:has(.sub-nav) > ._inner::after {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li > ._inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 88px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li > ._inner::after {
    content: /static/pages/css/"";
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/header/i-right.png) center center no-repeat;
    background-size: contain;
    margin-left: auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li > ._inner .img {
    width: 88px;
    height: 88px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li > ._inner .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .nav__list .nav__item .sub-nav .sub-nav-body._product > ul > li > ._inner .name {
    font-family: "fontFamily-B";
    font-size: 16px;
    line-height: 24px;
    padding: 0 4px;
  }
}
@media screen and (max-width: 800px) {
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .sidebar-footer {
    margin-top: auto;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .sidebar-footer .row-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .sidebar-footer .row-area:last-child {
    margin-bottom: 0;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .sidebar-footer .row-area .img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .sidebar-footer .row-area .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .sidebar-footer .row-area .choose-lang {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #F6F6F6;
    border-radius: 4px;
    padding: 4px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .sidebar-footer .row-area .choose-lang a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 52px;
    height: 100%;
  }
  header .g-head .wal .g-head-main .mb-sidebar .sidebar__main .sidebar__warpper .sidebar-footer .row-area .choose-lang a.on {
    background-color: white;
  }
}
@media screen and (max-width: 800px) {
  .choose-product-dialog {
    position: fixed;
    display: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
  }
  .choose-product-dialog.show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .choose-product-dialog .g-text-hover {
    --color: rgba(215, 25, 33, 1);
  }
  .choose-product-dialog .choose-product-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: white;
    padding: 16px;
  }
  .choose-product-dialog .choose-product-container .choose-product-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    padding-bottom: 4px;
    border-bottom: 1px solid #d71921;
  }
  .choose-product-dialog .choose-product-container .choose-product-head .title {
    font-size: 18px;
    line-height: 32px;
  }
  .choose-product-dialog .choose-product-container .choose-product-head .close {
    width: 24px;
    height: 24px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body {
    height: calc(100% - 44px);
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container {
    width: 100%;
    height: 100%;
    display: none;
    overflow: auto;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container.on {
    display: block;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: 1px solid #E6E6E6;
    padding: 0.4rem 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-label {
    position: relative;
    font-size: 16px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 0;
    font-family: "fontFamily-B";
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-label::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    left: 0;
    bottom: -12px;
    background-color: #d71921;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 32px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li {
    cursor: pointer;
    height: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li:nth-child(3n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li:nth-child(1n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0.16rem;
    width: 100%;
    height: 88px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .img {
    width: 88px;
    height: 88px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .name {
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    padding-right: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .i-arrow {
    display: none;
    width: 0.24rem;
    height: 0.24rem;
    margin-left: auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._product ul li > ._inner .i-arrow svg {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li {
    cursor: pointer;
    width: 100%;
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li:nth-child(3n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li {
    width: calc((100% - ((2 - 1) * 8px)) / 2);
    margin-right: 8px;
    margin-top: 8px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li:nth-child(2n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    width: 100%;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .img {
    position: relative;
    width: 100%;
    padding-top: 61.9%;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 8px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .info .name {
    font-size: 14px;
    line-height: 24px;
    padding-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .info .i-arrow {
    display: none;
    width: 0.24rem;
    height: 0.24rem;
    margin-left: auto;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .select-container .select-area .select-list._scene ul li > ._inner .info .i-arrow svg {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .result-container {
    display: none;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 10px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container.on {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 32px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-head .go-back-box .go-back {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-head .go-back-box .go-back::before {
    width: 24px;
    height: 24px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-head .title {
    position: relative;
    font-family: "fontFamily-B";
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-head .title::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    left: 0;
    bottom: -12px;
    background-color: #d71921;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
    padding-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li {
    height: 104px;
    border: 1px solid #E6E6E6;
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li {
    width: calc((100% - ((4 - 1) * 0.32rem)) / 4);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li:nth-child(4n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li:nth-child(1n) {
    margin-right: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li a {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 16px;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li a .img {
    position: static;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    width: 88px;
    height: 88px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li a .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .choose-product-dialog .choose-product-container .choose-product-body .result-container .result-list ul li a .name {
    font-family: "fontFamily-R";
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 24px;
    margin-left: 32px;
  }
}
@media screen and (max-width: 800px) {
  .floor-search {
    padding: 32px 0 16px;
    background-color: white;
  }
  .floor-search .wal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .floor-search .wal .left-area {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .floor-search .wal .left-area .title {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
  }
  .floor-search .wal .left-area .context {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    margin-top: 16px;
  }
  .floor-search .wal .right-area {
    width: 100%;
    margin-left: 0;
    margin-top: 32px;
  }
  .floor-search .wal .right-area .search-input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 56px;
    padding: 16px;
  }
  .floor-search .wal .right-area .search-input input {
    font-size: 14px;
  }
  .floor-search .wal .right-area .search-input .search-btn {
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin-left: 0.16rem;
  }
  .floor-search .wal .right-area .search-history {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .floor-help {
    padding-top: 1.2rem;
  }
  .floor-help .wal .floor-help-list {
    margin-top: 0.64rem;
  }
  .floor-help .wal .floor-help-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .floor-help .wal .floor-help-list ul li {
    cursor: pointer;
  }
  .floor-help .wal .floor-help-list ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 32px 16px;
    background: #F7F8FA;
  }
  .floor-help .wal .floor-help-list ul li a::after {
    display: none;
  }
  .floor-help .wal .floor-help-list ul li a .img {
    width: 24px;
    height: 24px;
  }
  .floor-help .wal .floor-help-list ul li a .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .floor-help .wal .floor-help-list ul li a .title {
    font-size: 14px;
    line-height: 24px;
    margin-top: 8px;
    font-family: "fontFamily-R";
  }
  .floor-help .wal .floor-help-list ul li a .context {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .index-page .index-banner {
    overflow: hidden;
  }
  .index-page .index-banner .banner_wrapper .banner_main {
    position: relative;
    width: 100%;
  }
  .index-page .index-banner .banner_wrapper .banner_main .banner_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: calc(100vh - var(--headH));
  }
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item {
    width: 100%;
    height: 100%;
  }
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
  }
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_img,
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_img img,
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_img video,
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_video img,
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .bg_video {
    z-index: 1;
  }
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .inner_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 136px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 2;
    color: white;
  }
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .inner_content .title {
    max-width: 100%;
    font-size: 64px;
    line-height: 72px;
  }
  .index-page .index-banner .banner_wrapper .banner_main .banner_list .banner_item a .inner_content .sub-title {
    font-size: 32px;
    line-height: 40px;
    max-width: 100%;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control {
    position: absolute;
    width: 100%;
    left: 16px;
    bottom: 16px;
    z-index: 2;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.16rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 0.16rem;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    --present: 20%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 0.08rem;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg {
    display: none;
    --size: 24px;
    --border-width: 2px;
    --percent: 80;
    width: var(--size);
    height: var(--size);
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg circle {
    width: 100%;
    height: 100%;
    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: calc((var(--size) - var(--border-width)) / 2);
    fill: transparent;
    stroke: #8a94a1;
    stroke-width: var(--border-width);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotateZ(270deg);
    -ms-transform: rotate(270deg);
    transform: rotateZ(270deg);
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg circle:nth-child(2) {
    stroke: #d71921;
    stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #8a94a1;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span:last-child {
    margin-right: 0;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span.swiper-pagination-bullet-active svg {
    display: block;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span.swiper-pagination-bullet-active::after {
    background-color: white;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow {
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .prev,
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .next {
    width: 24px;
    height: 24px;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/i-left.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-color: transparent;
    background-size: contain;
  }
  .index-page .index-banner .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .next {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/i-right.png);
    margin-left: 24px;
  }
  .index-page .our-mission .our-mission__long-box {
    height: 100%;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner {
    height: 100%;
    min-height: 600px;
    opacity: 1;
    color: #fff;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow: hidden;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 64px 24px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 1;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container.js_show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .left-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 30px;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .left-title .title {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .left-title .title::after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .context-Info {
    margin-top: 32px;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .context-Info .context {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__container .context-Info .g-btn {
    text-align: center;
    margin-top: 40px;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: -1;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background .our-missoin__image-block {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background .our-missoin__image-block .our-missoin__image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .index-page .our-mission .our-mission__long-box .our-mission__section-inner .our-mission__background .our-missoin__image-block .our-missoin__image-wrapper .our-mission__big-image {
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
    -webkit-backdrop-filter: brightness(0%) invert(1);
    backdrop-filter: brightness(0%) invert(1);
    object-fit: cover;
    background-image: -webkit-linear-gradient(#000, #fff);
    background-image: linear-gradient(#000, #fff);
    position: absolute;
    top: 0%;
    left: 0%;
    overflow-clip-margin: content-box;
    overflow: clip;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    --clip: 100% !important;
    --clip-Y: 50%;
    -webkit-clip-path: circle(var(--clip) at 50% var(--clip-Y));
    clip-path: circle(var(--clip) at 50% var(--clip-Y));
    overflow: hidden;
  }
  .index-page .index-ability {
    padding: 32px 0 64px;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/bg01.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-size: cover;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head .title {
    text-align: center;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head .title::after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head .swiper-nav {
    margin-top: 48px;
    padding: 0 24px 24px;
    border-bottom: 1px solid #D9D9D9;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head .swiper-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head .swiper-nav ul li {
    position: relative;
    width: 48px;
    height: 48px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head .swiper-nav ul li.on .img {
    opacity: 1;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head .swiper-nav ul li.on::after {
    display: block;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head .swiper-nav ul li::after {
    display: none;
    position: absolute;
    content: /static/pages/css/"";
    width: 100%;
    bottom: -24px;
    height: 4px;
    background-color: #d71921;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-head .swiper-nav ul li .img {
    opacity: 0.2;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body {
    margin-top: 32px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list {
    position: relative;
    overflow: hidden;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 32px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left .ico {
    display: none;
    width: 0.48rem;
    height: 0.48rem;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left .ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left .title {
    font-size: 20px;
    line-height: 32px;
    margin-top: 0;
    font-family: "fontFamily-B";
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._left .context {
    font-size: 14px;
    line-height: 24px;
    margin-top: 16px;
    color: #767676;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 0;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._right .img {
    width: 100%;
    height: 200px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list ul li ._right .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.16rem;
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    --present: 20%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 0.08rem;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span svg {
    display: none;
    --size: 24px;
    --border-width: 2px;
    --percent: 80;
    width: var(--size);
    height: var(--size);
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span svg circle {
    width: 100%;
    height: 100%;
    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: calc((var(--size) - var(--border-width)) / 2);
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: var(--border-width);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotateZ(270deg);
    -ms-transform: rotate(270deg);
    transform: rotateZ(270deg);
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span svg circle:nth-child(2) {
    stroke: #d71921;
    stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span:last-child {
    margin-right: 0;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span.swiper-pagination-bullet-active svg {
    display: block;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .dots span.swiper-pagination-bullet-active::after {
    background-color: white;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .arrow {
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .arrow .prev,
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .arrow .next {
    width: 24px;
    height: 24px;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-prev_on.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-color: transparent;
    background-size: contain;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-list .ability-control .swiper-control .arrow .next {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-next_on.svg);
    margin-left: 24px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer {
    padding: 32px 0;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li {
    padding: 0 5px 0 16px;
    border-right: 1px solid #e6e6e6;
    margin-top: 32px !important;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li:nth-child(-n+2) {
    margin-top: 0 !important;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li:nth-child(2n) {
    border-right: 0;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li .img {
    height: 40px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li .img img {
    height: 32px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li .num {
    font-family: "fontFamily-Num";
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 32px;
    line-height: 40px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li .num .unit {
    margin-left: 6px;
    font-size: 14px;
    line-height: 24px;
    color: #A6A6A6;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body .index-ability-footer ul li .name {
    font-size: 14px;
    line-height: 24px;
  }
  .index-page .index-ability .wal .index-ability-inner .index-ability-body > .g-btn {
    text-align: center;
    margin-top: 32px;
  }
  .index-page .index-application-area {
    position: relative;
    padding: 31px 0 64px;
    background: #EEF0F2;
    overflow: hidden;
  }
  .index-page .index-application-area .swiper-dots ._dot {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 40px;
    padding: 8px 14px;
    border-radius: 28px;
    z-index: 1;
    background-color: transparent !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .index-application-area .swiper-dots ._dot.to_left {
    -webkit-transform: rotateY(180deg) translate(100%, 0);
    transform: rotateY(180deg) translate(100%, 0);
  }
  .index-page .index-application-area .swiper-dots ._dot.to_left .name {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .index-page .index-application-area .swiper-dots ._dot .point {
    position: relative;
    width: 0.24rem;
    height: 0.24rem;
    margin-right: 8px;
  }
  .index-page .index-application-area .swiper-dots ._dot .point em {
    width: 4px;
    height: 4px;
    background-color: #fff;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
  .index-page .index-application-area .swiper-dots ._dot .point::before {
    content: /static/pages/css/"";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    -webkit-animation: scaleMap 2s infinite linear;
    animation: scaleMap 2s infinite linear;
    background: -webkit-radial-gradient(center, ellipse, transparent 0%, rgba(215, 25, 33, 0.8) 20%, #d71921 100%);
    background: radial-gradient(ellipse at center, transparent 0%, rgba(215, 25, 33, 0.8) 20%, #d71921 100%);
  }
  .index-page .index-application-area .swiper-dots ._dot .point::after {
    content: /static/pages/css/"";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    -webkit-animation: scaleMapSmall 2s infinite linear -1s;
    animation: scaleMapSmall 2s infinite linear -1s;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0) 0%, #d71921 50%, #d71921 70%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, #d71921 50%, #d71921 70%);
  }
  .index-page .index-application-area .swiper-dots ._dot .name {
    font-size: 12px;
    line-height: 24px;
  }
  .index-page .index-application-area .swiper-dots ._dot.on {
    background-color: white !important;
  }
  .index-page .index-application-area .wal {
    position: static;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    padding: 0;
  }
  .index-page .index-application-area .wal .application-area-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .index-page .index-application-area .wal .application-area-inner .title {
    padding: 0 16px;
  }
  .index-page .index-application-area .wal .application-area-inner .title::after {
    left: 16px;
  }
  .index-page .index-application-area .wal .application-area-inner .context {
    max-width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin: 32px 0;
    padding: 0 16px;
  }
  .index-page .index-application-area .wal .application-area-inner > .bg-img {
    position: relative;
    z-index: 0;
  }
  .index-page .index-application-area .wal .application-area-inner .imgs-swiper {
    margin-top: 16px;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .index-page .index-application-area .wal .application-area-inner .imgs-swiper ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 240px;
  }
  .index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 16px;
  }
  .index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li:hover .bg-img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li ._bottom {
    margin-top: auto;
  }
  .index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li ._bottom .img {
    width: 0.48rem;
    height: 0.48rem;
  }
  .index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li ._bottom .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .index-page .index-application-area .wal .application-area-inner .imgs-swiper ul li ._bottom .name {
    margin-top: 0.16rem;
    font-size: 0.2rem;
    line-height: 0.32rem;
    color: white;
  }
  .index-page .index-product {
    padding: 32px 0 64px;
    background-color: #F7F8FA;
    overflow: hidden;
  }
  .index-page .index-product .wal .index-product-inner .index-product-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .index-page .index-product .wal .index-product-inner .index-product-head .arrow {
    display: none;
    margin-left: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translate(0, 0.24rem);
    -ms-transform: translate(0, 0.24rem);
    transform: translate(0, 0.24rem);
  }
  .index-page .index-product .wal .index-product-inner .index-product-head .arrow .prev,
  .index-page .index-product .wal .index-product-inner .index-product-head .arrow .next {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-prev_on.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 0.56rem;
    height: 0.56rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    background-size: 0.24rem 0.24rem;
    border: 1px solid #1E1E1E;
  }
  .index-page .index-product .wal .index-product-inner .index-product-head .arrow .prev.swiper-button-disabled,
  .index-page .index-product .wal .index-product-inner .index-product-head .arrow .next.swiper-button-disabled {
    opacity: 0.2;
  }
  .index-page .index-product .wal .index-product-inner .index-product-head .arrow .next {
    margin-left: 0.16rem;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/arrow-next_on.svg);
  }
  .index-page .index-product .wal .index-product-inner .index-product-body {
    margin-top: 32px;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li {
    width: 100%;
    margin-right: 0;
    background-color: white;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li:last-child {
    margin-right: 0;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 344px;
    padding: 16px;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a:hover .img::after {
    opacity: 1;
    visibility: visible;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .img {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .img::after {
    display: none;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .product-info .name {
    font-size: 16px;
    line-height: 24px;
    font-family: "fontFamily-B";
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list ul li a .product-info .context {
    font-size: 12px;
    line-height: 24px;
    color: #767676;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control {
    text-align: center;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: white;
    border-radius: 16px;
    margin: 16px 0;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control .dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control .dots span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    --present: 20%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 0.08rem;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control .dots span svg {
    display: none;
    --size: 24px;
    --border-width: 2px;
    --percent: 80;
    width: var(--size);
    height: var(--size);
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control .dots span svg circle {
    width: 100%;
    height: 100%;
    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: calc((var(--size) - var(--border-width)) / 2);
    fill: transparent;
    stroke: rgba(30, 30, 30, 0.2);
    stroke-width: var(--border-width);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotateZ(270deg);
    -ms-transform: rotate(270deg);
    transform: rotateZ(270deg);
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control .dots span svg circle:nth-child(2) {
    stroke: #d71921;
    stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control .dots span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(30, 30, 30, 0.2);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control .dots span:last-child {
    margin-right: 0;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active svg {
    display: block;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .product-list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active::after {
    background-color: #d71921;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list {
    margin-top: 0;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li {
    background: white;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0.4rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a:hover::before {
    width: 100%;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a .name {
    font-size: 16px;
    line-height: 24px;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a .name .icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 16px;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a::before {
    content: /static/pages/css/"";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d71921;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .index-page .index-product .wal .index-product-inner .index-product-body .href-list ul li a::after {
    content: /static/pages/css/"";
    display: block;
    width: 0.24rem;
    height: 0.24rem;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/icon03.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-color: transparent;
    background-size: contain;
  }
  .index-page .index-responsibility {
    position: relative;
    width: 100%;
    height: 560px;
    padding: 32px 0;
    overflow: hidden;
  }
  .index-page .index-responsibility .index-responsibility-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .index-page .index-responsibility .index-responsibility-container .title {
    position: relative;
    font-size: 24px;
    line-height: 32px;
    font-family: "fontFamily-B";
  }
  .index-page .index-responsibility .index-responsibility-container .title::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background-color: #d71921;
  }
  .index-page .index-responsibility .index-responsibility-container .context {
    max-width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    margin-top: 32px;
  }
  .index-page .index-responsibility .index-responsibility-container .g-btn {
    margin-top: 32px;
  }
  .index-page .index-joinUs {
    width: 100%;
    min-height: auto;
    background: #F7F8FA;
    padding: 32px 0 64px;
  }
  .index-page .index-joinUs .wal {
    height: 100%;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-left .context {
    max-width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin-top: 32px;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-left .g-btn {
    margin-top: 0.64rem;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-img {
    position: relative;
    width: 100%;
    height: 208px;
    margin-top: 48px;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-img .bg-img {
    position: static;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-img .bg-img img {
    position: absolute;
    top: 0;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-img .bg-img._bottom {
    width: 0;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-img .bg-img._bottom img {
    top: -16px;
    margin-left: 32px;
    width: 312px;
    height: 192px;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-img .bg-img._top {
    width: 0;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .c-img .bg-img._top img {
    width: 328px;
    height: 208px;
    z-index: 1;
  }
  .index-page .index-joinUs .wal .index-joinUs-inner .g-btn {
    text-align: center;
    margin-top: 32px;
  }
  .index-page .index-news {
    padding: 32px 0 64px;
  }
  .index-page .index-news .wal .index-news-inner .news-list {
    margin-top: 32px;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li {
    width: 100%;
    border-bottom: 1px solid #E6E6E6;
    padding: 32px 0 16px;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li:first-child {
    padding-top: 0;
    margin-top: 0;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li a ._left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 0;
    border-right: 0;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li a ._left .img {
    width: 100%;
    height: 216px;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li a ._left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li a ._right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 0;
    margin-top: 16px;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li a ._right .title {
    font-family: "fontFamily-B";
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 24px;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li a ._right .context {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
    color: #767676;
  }
  .index-page .index-news .wal .index-news-inner .news-list ul li a ._right .time {
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
    color: #767676;
  }
  .index-page .index-news .wal .index-news-inner .bottom-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 32px;
  }
}
@media screen and (max-width: 800px) {
  .about-page .about-banner {
    position: relative;
    padding-top: 128%;
    width: 100%;
  }
  .about-page .about-banner .bg-img {
    z-index: 0;
  }
  .about-page .about-introduce {
    padding: 32px 0 48px;
  }
  .about-page .about-introduce .wal .about-introduce-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-page .about-introduce .wal .about-introduce-head .title {
    text-align: center;
    width: 100%;
    padding-right: 0;
    font-size: 24px;
    line-height: 32px;
  }
  .about-page .about-introduce .wal .about-introduce-head .title span {
    position: relative;
  }
  .about-page .about-introduce .wal .about-introduce-head .title span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 24px;
    height: 4px;
    left: 50%;
    bottom: -12px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .about-page .about-introduce .wal .about-introduce-head .info {
    width: 100%;
    margin-top: 48px;
  }
  .about-page .about-introduce .wal .about-introduce-head .info .sub-title {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    color: #d71921;
  }
  .about-page .about-introduce .wal .about-introduce-head .info .content {
    font-size: 14px;
    line-height: 24px;
    margin-top: 16px;
  }
  .about-page .about-introduce .wal .about-introduce-head .info .content p {
    font-size: 14px;
    line-height: 24px;
    min-height: 10px;
  }
  .about-page .about-introduce .wal .about-introduce-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/bg01.png) center center no-repeat;
    background-size: contain;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-left .year-box {
    margin-top: 32px;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-left .year-box .lable {
    font-size: 14px;
    line-height: 24px;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-left .year-box .year {
    font-size: 32px;
    line-height: 40px;
    margin-top: 0;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-left .video {
    cursor: pointer;
    margin-top: 0;
    width: 100%;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-left .video .img {
    position: relative;
    padding-top: 55.6%;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-left .video .img::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    object-fit: cover;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-play.png) center center no-repeat;
    background-size: contain;
    z-index: 1;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-left .video .img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right {
    width: 100%;
    margin-top: 16px;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul li {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
    padding: 16px 0;
    border-top: 1px solid #E6E6E6;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul li:nth-child(-n+2) {
    border-top: 0;
    padding-top: 0;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul li:nth-child(2n) {
    margin-right: 0;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul li .lable {
    font-size: 14px;
    line-height: 24px;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul li .content {
    margin-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul li .content .num-box,
.about-page .about-introduce .wal .about-introduce-body .area-right ul li .content em {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 24px;
    line-height: 32px;
    color: #d71921;
    font-family: "fontFamily-Num";
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul li .content .num-box{
    width: 100%;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul li .content .num-box .count-to{
    display: inline-block;
    max-width: 100%;
    white-space: pre-line;
    word-wrap: break-word;
  }
  .about-page .about-introduce .wal .about-introduce-body .area-right ul li .content em {
    margin: 0 0.05rem;
  }
  .about-page .about-culture {
    padding: 32px 0 64px;
    background: #F7F8FA;
  }
  .about-page .about-culture .wal .about-culture-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-page .about-culture .wal .about-culture-head .title {
    width: 100%;
    padding-right: 0;
    font-size: 24px;
    line-height: 32px;
  }
  .about-page .about-culture .wal .about-culture-head .title span {
    position: relative;
  }
  .about-page .about-culture .wal .about-culture-head .title span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 24px;
    height: 4px;
    left: 0;
    bottom: -12px;
    background-color: #d71921;
  }
  .about-page .about-culture .wal .about-culture-head .context {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin-top: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .about-page .about-culture .wal .about-culture-body {
    position: relative;
    margin-top: 32px;
    height: 100%;
  }
  .about-page .about-culture .wal .about-culture-body ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .about-page .about-culture .wal .about-culture-body ul li {
    position: relative;
    width: 100%;
    height: 160px;
    border-right: 0;
    margin-bottom: 8px;
  }
  .about-page .about-culture .wal .about-culture-body ul li:nth-child(2n) .info .info-inner {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .about-page .about-culture .wal .about-culture-body ul li:nth-child(2n) .info .info-inner .name {
    text-align: right;
  }
  .about-page .about-culture .wal .about-culture-body ul li:nth-child(2n) .info .info-inner .text {
    text-align: right;
  }
  .about-page .about-culture .wal .about-culture-body ul li:last-child {
    border-right: 0;
    margin-bottom: 0;
  }
  .about-page .about-culture .wal .about-culture-body ul li .bg-img {
    position: absolute;
    display: block;
  }
  .about-page .about-culture .wal .about-culture-body ul li .info {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    color: white;
    padding: 16px;
    opacity: 1;
    z-index: 1;
  }
  .about-page .about-culture .wal .about-culture-body ul li .info::after {
    display: none;
  }
  .about-page .about-culture .wal .about-culture-body ul li .info .info-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    z-index: 2;
  }
  .about-page .about-culture .wal .about-culture-body ul li .info .info-inner .dot {
    display: none;
  }
  .about-page .about-culture .wal .about-culture-body ul li .info .info-inner .name {
    text-align: left;
    font-size: 20px;
    line-height: 24px;
    font-family: "fontFamily-B";
    margin-top: 0;
  }
  .about-page .about-culture .wal .about-culture-body ul li .info .info-inner .text {
    position: static;
    width: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .about-page .about-news {
    padding: 32px 0 64px;
  }
  .about-page .about-news .wal .about-news-inner .news-list {
    margin-top: 32px;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li {
    width: 100%;
    border-bottom: 1px solid #E6E6E6;
    padding: 32px 0 16px;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li:first-child {
    padding-top: 0;
    margin-top: 0;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li a ._left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 0;
    border-right: 0;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li a ._left .img {
    width: 100%;
    height: 216px;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li a ._left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li a ._right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 0;
    margin-top: 16px;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li a ._right .title {
    font-family: "fontFamily-B";
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 24px;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li a ._right .context {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
    color: #767676;
  }
  .about-page .about-news .wal .about-news-inner .news-list ul li a ._right .time {
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
    color: #767676;
  }
  .about-page .about-news .wal .about-news-inner .bottom-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
  }
  .about-page .about-history {
    position: relative;
    padding: 0 0 64px;
    min-height: 480px;
    overflow: hidden;
  }
  .about-page .about-history .wal .about-history-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .about-page .about-history .wal .about-history-head .title {
    width: 100%;
    padding-right: 0;
    font-size: 24px;
    line-height: 32px;
    font-family: "fontFamily-B";
  }
  .about-page .about-history .wal .about-history-head .title span {
    position: relative;
  }
  .about-page .about-history .wal .about-history-head .title span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 24px;
    height: 4px;
    left: 0;
    bottom: -12px;
    background-color: #d71921;
  }
  .about-page .about-history .wal .about-history-head .g-btn {
    display: none;
    margin-left: auto;
  }
  .about-page .about-history .wal .about-history-swiper {
    position: relative;
    margin-top: 48px;
    padding: 0;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container {
    position: relative;
    width: 100%;
    height: 56px;
    border-bottom: 1px solid #1E1E1E;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container::before {
    content: /static/pages/css/"";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    width: 0.08rem;
    height: 0.08rem;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
    background-color: #1E1E1E;
    border-radius: 50%;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container::after {
    content: /static/pages/css/"";
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    width: 0.08rem;
    height: 0.08rem;
    background-color: #1E1E1E;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
    border-radius: 50%;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 56px;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li {
    position: relative;
    width: 20%;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li.swiper-slide-prev .year {
    opacity: 1;
    left: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li.swiper-slide-active {
    width: 60%;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li.swiper-slide-active .year {
    opacity: 1;
    color: #d71921;
    line-height: 40px;
    font-size: 48px;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li.swiper-slide-active .context {
    opacity: 1;
    visibility: visible;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li.swiper-slide-next .year {
    opacity: 1;
    left: auto;
    right: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li .year {
    opacity: 0;
    font-family: "fontFamily-B";
    position: absolute;
    font-size: 16px;
    line-height: 24px;
    left: 50%;
    bottom: 16px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: font-size 0.3s, opacity 0.3s, line-height 0.3s;
    transition: font-size 0.3s, opacity 0.3s, line-height 0.3s;
  }
  .about-page .about-history .wal .about-history-swiper .about-history-swiper-container ul li .context {
    position: absolute;
    width: 300px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    bottom: -8px;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
        -ms-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .about-page .about-history .wal .about-history-swiper .arrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 64px;
  }
  .about-page .about-history .wal .about-history-swiper .arrow .prev,
.about-page .about-history .wal .about-history-swiper .arrow .next {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    width: 40px;
    height: 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    left: 0;
    bottom: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #1E1E1E;
    z-index: 10;
  }
  .about-page .about-history .wal .about-history-swiper .arrow .prev::after,
.about-page .about-history .wal .about-history-swiper .arrow .next::after {
    content: /static/pages/css/"";
    display: block;
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-prev.png) center center no-repeat;
    background-size: contain;
  }
  .about-page .about-history .wal .about-history-swiper .arrow .next {
    left: auto;
    right: 0;
  }
  .about-page .about-history .wal .about-history-swiper .arrow .next::after {
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/about/i-next.png) center center no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 800px) {
  .history-page .history-banner {
    position: relative;
    padding-top: 128%;
    width: 100%;
  }
  .history-page .history-banner .bg-img {
    z-index: 0;
  }
  .history-page .history-list {
    position: relative;
    margin-top: 32px;
    padding-bottom: 256px;
  }
  .history-page .history-list .wal .bg-img {
    height: 480px;
    top: auto;
    bottom: 0;
  }
  .history-page .history-list .wal ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .history-page .history-list .wal ul::after {
    content: /static/pages/css/"";
    position: absolute;
    width: 0.02rem;
    height: calc(100% - 64px);
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background-color: #d71921;
  }
  .history-page .history-list .wal ul li {
    position: relative;
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    border-top: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(left, rgba(230, 230, 230, 0), #e6e6e6) 1 1;
            border-image: linear-gradient(90deg, rgba(230, 230, 230, 0), #e6e6e6) 1 1;
    padding: 8px 19px 36px 0;
    min-height: 64px;
    margin-right: auto;
  }
  .history-page .history-list .wal ul li::after {
    content: /static/pages/css/"";
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: 0;
    right: 0;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/history/icon01.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-size: contain;
    -webkit-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    background-color: transparent;
    z-index: 1;
  }
  .history-page .history-list .wal ul li:first-child {
    margin-top: 64px;
  }
  .history-page .history-list .wal ul li:nth-child(2n) {
    padding: 8px 0 36px 19px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: auto;
    margin-right: 0;
    -webkit-border-image: -webkit-linear-gradient(right, rgba(230, 230, 230, 0), #e6e6e6) 1 1;
            border-image: linear-gradient(270deg, rgba(230, 230, 230, 0), #e6e6e6) 1 1;
  }
  .history-page .history-list .wal ul li:nth-child(2n)::after {
    top: 0;
    left: 0;
    right: auto;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .history-page .history-list .wal ul li:nth-child(2n) .year {
    right: auto;
    left: 19px;
  }
  .history-page .history-list .wal ul li:nth-child(2n) .context p {
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .history-page .history-list .wal ul li .year {
    position: absolute;
    font-family: "fontFamily-Num";
    font-size: 20px;
    line-height: 24px;
    top: -8px;
    right: 19px;
    -webkit-transform: translate(0, -100%);
        -ms-transform: translate(0, -100%);
            transform: translate(0, -100%);
    color: #d71921;
  }
  .history-page .history-list .wal ul li .context p {
    font-size: 12px;
    line-height: 24px;
  }
  .history-page .history-list .wal ul li .context p::before {
    width: 4px;
    height: 4px;
    margin-top: 10px;
    margin-right: 4px;
  }
}
@media screen and (max-width: 800px) {
  .productServes-page .banner_container {
    overflow: hidden;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main {
    position: relative;
    width: 100%;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .banner_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item {
    width: 100%;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-top: 128%;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_img,
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_img img,
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_img video,
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_video img,
.productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .banner_list .banner_item a .bg_video {
    z-index: 1;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control {
    position: absolute;
    width: 100%;
    left: 16px;
    bottom: 16px;
    z-index: 2;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.16rem;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 0.16rem;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    --present: 20%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 0.08rem;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg {
    display: none;
    --size: 24px;
    --border-width: 2px;
    --percent: 80;
    width: var(--size);
    height: var(--size);
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg circle {
    width: 100%;
    height: 100%;
    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: calc((var(--size) - var(--border-width)) / 2);
    fill: transparent;
    stroke: #8a94a1;
    stroke-width: var(--border-width);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotateZ(270deg);
        -ms-transform: rotate(270deg);
            transform: rotateZ(270deg);
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span svg circle:nth-child(2) {
    stroke: #d71921;
    stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #8a94a1;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span:last-child {
    margin-right: 0;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span.swiper-pagination-bullet-active svg {
    display: block;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .dots span.swiper-pagination-bullet-active::after {
    background-color: white;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow {
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .prev,
.productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .next {
    width: 24px;
    height: 24px;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/i-left.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-color: transparent;
    background-size: contain;
  }
  .productServes-page .banner_container .banner_wrapper .banner_main .bottom-control .bottom-control-container .bottom-control-inner .arrow .next {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/index/i-right.png);
    margin-left: 24px;
  }
  .productServes-page .floor-product {
    padding: 0;
    background: #F7F8FA;
  }
  .productServes-page .floor-product .product-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: white;
    padding: 0 16px;
    overflow: hidden;
    z-index: 99;
  }
  .productServes-page .floor-product .product-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .productServes-page .floor-product .product-nav ul li {
    width: auto !important;
    font-size: 14px;
    line-height: 24px;
    padding: 16px 0;
    border-bottom: 2px solid transparent;
    color: #767676;
    margin-right: 32px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .productServes-page .floor-product .product-nav ul li:last-child {
    margin-right: 0;
  }
  .productServes-page .floor-product .product-nav ul li.active {
    border-bottom: 2px solid #d71921;
    color: #1E1E1E;
    font-family: "fontFamily-B";
  }
  .productServes-page .floor-product .wal {
    margin-top: 32px;
    padding-bottom: 64px;
  }
  .productServes-page .floor-product .wal .product-area {
    margin-top: 0;
    display: none;
  }
  .productServes-page .floor-product .wal .product-area.on {
    display: block;
  }
  .productServes-page .floor-product .wal .product-area:first-child {
    margin-top: 0;
  }
  .productServes-page .floor-product .wal .product-area .product-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: auto;
  }
  .productServes-page .floor-product .wal .product-area .product-head .product-head-info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .productServes-page .floor-product .wal .product-area .product-head .product-head-info .context {
    margin-top: 32px;
    font-size: 14px;
    line-height: 24px;
  }
  .productServes-page .floor-product .wal .product-area .product-head .product-head-info .g-btn {
    display: none;
  }
  .productServes-page .floor-product .wal .product-area .product-head .product-coverImg {
    width: 100%;
    margin-left: 0;
    height: 208px;
    background-color: white;
    margin-top: 16px;
  }
  .productServes-page .floor-product .wal .product-area .product-head .product-coverImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .productServes-page .floor-product .wal .product-area .product-head .check-all {
    margin-top: 32px;
  }
  .productServes-page .floor-product .wal .product-area .product-head .check-all a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 40px;
    border: 1px solid #d71921;
    font-size: 12px;
    line-height: 24px;
    color: #d71921;
  }
  .productServes-page .floor-product .wal .product-area .product-list {
    margin-top: 16px;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li {
    background-color: white;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 344px;
    padding: 16px;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li a:hover .img::after {
    opacity: 1;
    visibility: visible;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li a .img {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 40px;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li a .img::after {
    display: none;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li a .product-info .name {
    font-size: 16px;
    line-height: 24px;
  }
  .productServes-page .floor-product .wal .product-area .product-list ul li a .product-info .series {
    font-size: 12px;
    line-height: 24px;
    margin-top: 0;
  }
  .productServes-page .floor-solution {
    padding-top: 32px;
  }
  .productServes-page .floor-solution .wal .floor-solution-list {
    margin-top: 32px;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li {
    cursor: pointer;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .img {
    position: relative;
    width: 100%;
    padding-top: 60.9%;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 8px 0;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .info .name {
    font-size: 14px;
    line-height: 24px;
    padding-right: 0;
  }
  .productServes-page .floor-solution .wal .floor-solution-list ul li > ._inner .info .i-arrow {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .productCenter-page .floor-search {
    padding: 64px 0 32px;
  }
  .productCenter-page .floor-product {
    padding: 16px 0 64px;
    background-color: #F7F8FA;
  }
  .productCenter-page .floor-product .wal .filter-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .productCenter-page .floor-product .wal .filter-head .filter-lable {
    font-size: 14px;
    line-height: 24px;
  }
  .productCenter-page .floor-product .wal .filter-head .reset-filter {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
  }
  .productCenter-page .floor-product .wal .filter-head .reset-filter img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  .productCenter-page .floor-product .wal .filter-head .reset-filter span {
    font-size: 14px;
    line-height: 24px;
    color: #d71921;
  }
  .productCenter-page .floor-product .wal .filter-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 32px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-head .img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-head .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-head span {
    font-size: 20px;
    line-height: 24px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list {
    margin-top: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item {
    padding: 16px 0;
    border-top: 1px solid #E6E6E6;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item:last-child {
    border-bottom: 1px solid #E6E6E6;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item.on .item-hd:before {
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-sub.png) center center no-repeat;
    background-size: contain;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item.on dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item .item-hd {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    line-height: 24px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item .item-hd:before {
    content: /static/pages/css/"";
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-plus.png) center center no-repeat;
    background-size: contain;
    margin-right: 8px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl {
    margin-top: 16px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl dd {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl dd.on:before {
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-checkbox_on.png) center center no-repeat;
    background-size: contain;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl dd:last-child {
    margin-bottom: 0;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-left .filter-area .filter-area-list .filter-area-item dl dd:before {
    content: /static/pages/css/"";
    width: 24px;
    height: 24px;
    background: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/product/i-checkbox.png) center center no-repeat;
    background-size: contain;
    margin-right: 8px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 32px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .super-result-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 40px;
    font-family: "fontFamily-B";
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result {
    margin-bottom: 55px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result:last-child {
    margin-bottom: 0;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-title {
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    color: white;
    min-width: 208px;
    background-color: #d71921;
    padding: 0 40px 0 8px;
    -webkit-clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list {
    padding-top: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    border-top: 1px solid #d71921;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 16px;
    min-height: 416px;
    background-color: white;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .img {
    position: absolute;
    top: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .name {
    font-size: 16px;
    line-height: 24px;
    font-family: "fontFamily-B";
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .context {
    font-size: 14px;
    line-height: 24px;
    margin-top: 8px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .learn-more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    line-height: 24px;
    margin-top: 16px;
  }
  .productCenter-page .floor-product .wal .filter-body .filter-right .super-result .sub-result .sub-result-list li a .learn-more::after {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 800px) {
  .lookFuture .page__list .page__list-container .page__list-wrapper {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li {
    margin-bottom: 64px;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li:last-child {
    margin-bottom: 0;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li:nth-child(2n) a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .img {
    width: 100%;
    height: 216px;
    margin-top: 16px;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content {
    width: 100%;
    padding: 0;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content .title {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 16px;
    font-family: "fontFamily-B";
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content .title::before {
    width: 24px;
    height: 4px;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content .content {
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
  }
  .lookFuture .page__list .page__list-container .page__list-wrapper .list ul li a .right-content .content p {
    font-size: 14px;
    line-height: 24px;
    min-height: 12px;
  }
}
.wal {
  max-width: 14.08rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1700px) {
  body {
    font-size: 16px;
  }

  html {
    font-size: 94px;
  }

  .wal {
    width: 90%;
  }
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 14px;
  }

  html {
    font-size: 82px;
  }

  .wal {
    width: 85%;
    max-width: initial;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 74px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 68px;
  }

  .wal {
    width: 90%;
    max-width: initial;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 64px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 70px;
  }
}
@media screen and (min-width: 800px) {
  .pc-show {
    display: block;
  }

  .phone-show {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 72px;
  }

  .wal,
.wal-1200,
.wal-1024 {
    width: 100%;
    padding: 0 16px;
  }

  .phone-show {
    display: block;
  }

  .pc-show {
    display: none !important;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 62px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 50px;
  }
}
@media screen and (min-width: 800px) {
  .g-text-hover {
    --color: #000000;
  }
  .g-text-hover:hover span {
    background-size: 100% 100%;
  }
  .g-text-hover span {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(0, #0b5ace));
    background-image: -webkit-linear-gradient(top, transparent 95%, var(--color) 0);
    background-image: linear-gradient(to bottom, transparent 95%, var(--color) 0);
    background-repeat: no-repeat;
    background-size: 0 100%;
    text-decoration: none;
    -webkit-transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
    transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
  }
}
.g-footer {
  background: #F7F8FA;
  color: #1E1E1E;
}
.g-footer .side-cell {
  position: fixed;
  right: 0.16rem;
  bottom: -4rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 10;
}
.g-footer .side-cell.show {
  bottom: 2.2rem;
}
.g-footer .side-cell .side-con {
  width: 0.56rem;
  height: 1.68rem;
  position: relative;
}
.g-footer .side-cell .side-con .bgi {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.g-footer .side-cell .side-con .xi-ul {
  padding: 0 0.08rem;
}
.g-footer .side-cell .side-con .xi-ul .xi-li {
  position: relative;
  height: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #C1000E;
}
.g-footer .side-cell .side-con .xi-ul .xi-li .pfyin {
  position: absolute;
  right: 0;
  width: 0px;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 0.56rem;
  opacity: 0;
  line-height: 0.56rem;
  padding-left: 0.2rem;
  overflow: hidden;
}
.g-footer .side-cell .side-con .xi-ul .xi-li:hover .pfyin {
  background: #d71921;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 1.8rem;
  opacity: 1;
  color: #fff;
  font-size: 0.16rem;
  overflow: hidden;
}
.g-footer .side-cell .side-con .xi-ul .xi-li:hover .pfyin.mail {
  width: 2.1rem;
}
.g-footer .side-cell .side-con .xi-ul .xi-li:last-child {
  border-bottom: none;
}
.g-footer .side-cell .side-con .xi-ul .xi-li img {
  width: 0.24rem;
  height: 0.24rem;
}
.g-footer .side-cell .side-con .back-top {
  margin-top: 0.08rem;
  width: 0.56rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.g-footer .side-cell .side-con .back-top img {
  width: 0.24rem;
  height: 0.24rem;
}
.g-footer .fot-con .footer-up {
  padding-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-up {
    padding-top: 32px;
    padding-bottom: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.g-footer .fot-con .footer-up .footer-up-left .logo-info .logo-img {
  height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-up .footer-up-left .logo-info .logo-img {
    height: 24px;
  }
}
.g-footer .fot-con .footer-up .footer-up-left .stock {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-up .footer-up-left .stock {
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
  }
}
.g-footer .fot-con .footer-up .footer-up-left .stock .label {
  display: inline-block;
}
.g-footer .fot-con .footer-up .footer-up-left .stock .value {
  display: inline-block;
  border: 1px solid #D9D9D9;
  padding: 0 0.12rem;
  font-family: "fontFamily-Num";
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-up .footer-up-left .stock .value {
    padding: 0 12px;
  }
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-up .footer-nav {
    margin-top: 16px;
  }
}
.g-footer .fot-con .footer-up .footer-nav .label {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-up .footer-nav .label {
    font-size: 14px;
    line-height: 24px;
  }
}
.g-footer .fot-con .footer-up .footer-nav a {
  line-height: 0.4rem;
  font-size: 0.32rem;
  font-family: "fontFamily-Num";
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-up .footer-nav a {
    font-size: 24px;
    line-height: 32px;
  }
}
.g-footer .fot-con .footer-bom {
  padding-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 16px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-left {
  width: 58%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-left .ft_link {
    border-bottom: 1px solid #D9D9D9;
    padding: 16px 0;
  }
  .g-footer .fot-con .footer-bom .g-foot-left .ft_link.show dt .arrows {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .g-footer .fot-con .footer-bom .g-foot-left .ft_link.show dd {
    display: block;
  }
}
.g-footer .fot-con .footer-bom .g-foot-left .ft_link dt {
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-left .ft_link dt {
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.g-footer .fot-con .footer-bom .g-foot-left .ft_link dt a {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: "fontFamily-B";
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-left .ft_link dt a {
    font-size: 16px;
    line-height: 24px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-left .ft_link dt .arrows img {
  height: 24px;
  width: 24px;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-left .ft_link dd {
    display: none;
    margin-top: 32px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-left .ft_link dd a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-bottom: 0.08rem;
  color: #333333;
  font-family: "fontFamily-R";
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-left .ft_link dd a {
    font-size: 14px;
    line-height: 24px;
    color: #1e1e1e;
    margin-bottom: 16px;
  }
  .g-footer .fot-con .footer-bom .g-foot-left .ft_link dd a:last-child {
    margin-bottom: 0;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info {
  width: 3.28rem;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info {
    width: 100%;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .name {
  font-size: 0.2rem;
  line-height: 0.24rem;
  margin-bottom: 0.16rem;
  font-family: "fontFamily-B";
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .name {
    margin-bottom: 16px;
    line-height: 24px;
    font-size: 16px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .item {
  margin-bottom: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .item {
    margin-bottom: 8px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .item .label {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .item .label {
    width: 18px;
    height: 18px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .item .value {
  display: inline-block;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-left: 0.08rem;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .item .value {
    margin-left: 11px;
    font-size: 14px;
    line-height: 24px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .item.bol {
  margin-top: 0.32rem;
  margin-bottom: 0.16rem;
  font-family: "fontFamily-B";
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .item.bol {
    margin-top: 32px;
    margin-bottom: 16px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .iut-emit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-footer .fot-con .footer-bom .g-foot-info .iut-emit input {
  width: 2.72rem;
  height: 0.56rem;
  padding: 0.16rem;
  font-size: 0.14rem;
  border: 1px solid #D9D9D9;
  border-right: none;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .iut-emit input {
    width: calc(100% - 48px);
    height: 48px;
    padding: 16px;
    line-height: 24px;
    font-size: 14px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .iut-emit input::-webkit-input-placeholder {
  color: #CCCCCC;
}
.g-footer .fot-con .footer-bom .g-foot-info .iut-emit input::-moz-placeholder {
  color: #CCCCCC;
}
.g-footer .fot-con .footer-bom .g-foot-info .iut-emit input:-ms-input-placeholder {
  color: #CCCCCC;
}
.g-footer .fot-con .footer-bom .g-foot-info .iut-emit input::placeholder {
  color: #CCCCCC;
}
.g-footer .fot-con .footer-bom .g-foot-info .iut-emit .sub-emit {
  width: 0.56rem;
  height: 0.56rem;
  background: -webkit-linear-gradient(225deg, transparent 6px, #d71921 0);
  background: linear-gradient(225deg, transparent 6px, #d71921 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-footer .fot-con .footer-bom .g-foot-info .iut-emit .sub-emit:hover {
  opacity: 0.8;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .iut-emit .sub-emit {
    width: 48px;
    height: 48px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .iut-emit .sub-emit img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .iut-emit .sub-emit img {
    width: 24px;
    height: 24px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .platform {
  margin-top: 0.16rem;
  margin-bottom: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .platform {
    margin-top: 24px;
    margin-bottom: 40px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li {
  width: 0.56rem;
  height: 0.56rem;
  margin-right: 0.16rem;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li {
    width: 56px;
    height: 56px;
    margin-right: 16px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li:hover .default {
  display: none;
  opacity: 0;
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li:hover .hover {
  display: inline-block;
  opacity: 1;
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li:hover .qr-box {
  display: block;
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .default {
  height: 100%;
  width: 100%;
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .default .round {
  height: 100%;
  width: 100%;
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .default .ico {
  width: 0.24rem;
  height: 0.24rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .default .ico {
    width: 24px;
    height: 24px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .hover {
  display: none;
  opacity: 0;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  background-color: #d71921;
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .hover .ico {
  width: 0.24rem;
  height: 0.24rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 800px) {
  .g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .hover .ico {
    width: 24px;
    height: 24px;
  }
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .qr-box {
  display: none;
  position: absolute;
  bottom: 0.72rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0.16rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 8px 8px;
  background: #FFFFFF;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .qr-box .qr-img {
  width: 1.2rem;
  height: 1.2rem;
}
.g-footer .fot-con .footer-bom .g-foot-info .platform .pal-li .qr-box .i-t {
  line-height: 0.24rem;
  font-size: 0.12rem;
  text-align: center;
}
.g-footer .crt {
  height: 0.56rem;
  background: #EBEEF3;
}
@media screen and (max-width: 800px) {
  .g-footer .crt {
    background: #F7F8FA;
    height: auto;
  }
}
.g-footer .crt .crt-con {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g-footer .crt .crt-con {
    padding-top: 16px;
    padding-bottom: 23px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.g-footer .crt .crt-con .crt-left {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .g-footer .crt .crt-con .crt-left {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.g-footer .crt .crt-con .crt-left .copyright {
  line-height: 0.24rem;
  font-size: 0.14rem;
}
@media screen and (max-width: 800px) {
  .g-footer .crt .crt-con .crt-left .copyright {
    line-height: 24px;
    font-size: 12px;
    color: #767676;
    width: 100%;
    text-align: center;
  }
}
.g-footer .crt .crt-con .crt-left .bah {
  line-height: 0.24rem;
  font-size: 0.14rem;
  margin-left: 0.22rem;
}
@media screen and (max-width: 800px) {
  .g-footer .crt .crt-con .crt-left .bah {
    margin-top: 8px;
    margin-left: 0;
    line-height: 24px;
    font-size: 12px;
    color: #767676;
    -webkit-text-decoration-line: underline;
       -moz-text-decoration-line: underline;
            text-decoration-line: underline;
  }
}
.g-footer .crt .crt-con .crt-left .kgu {
  line-height: 0.24rem;
  font-size: 0.14rem;
  margin-left: 0.18rem;
}
@media screen and (max-width: 800px) {
  .g-footer .crt .crt-con .crt-left .kgu {
    margin-top: 8px;
    margin-left: 7px;
    line-height: 24px;
    font-size: 12px;
    color: #767676;
    -webkit-text-decoration-line: underline;
       -moz-text-decoration-line: underline;
            text-decoration-line: underline;
  }
}
.g-footer .crt .crt-con .crt-right a {
  line-height: 0.24rem;
  font-size: 0.14rem;
  margin-left: 0.16rem;
}
@media screen and (max-width: 800px) {
  .g-footer .crt .crt-con .crt-right a {
    line-height: 24px;
    font-size: 12px;
    color: #767676;
    margin: 8px 0 0;
    padding: 0 16px;
  }
  .g-footer .crt .crt-con .crt-right a:last-child {
    border-left: 1px solid #1E1E1E;
  }
}

.hry-pagination {
  color: #1E1E1E;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.16rem;
}
.hry-pagination a {
  line-height: 0.24rem;
  height: 0.56rem;
  width: 0.56rem;
  border: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0.08rem;
}
.hry-pagination a.prev {
  margin-left: 0;
}
.hry-pagination a img {
  height: 0.24rem;
  width: 0.24rem;
}
.hry-pagination a.on {
  background-color: #d71921;
  border: none;
  color: #FFFFFF;
}
.hry-pagination a.on:hover {
  opacity: 0.8;
}
.hry-pagination .pagination-num-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hry-pagination .pagination-num-list a:hover {
  background-color: #d71921;
  border: none;
  color: #FFFFFF;
}
.hry-pagination .pagination-num-list .omit {
  height: 0.56rem;
  width: 0.56rem;
  text-align: center;
  margin-left: 0.08rem;
  line-height: 0.56rem;
}

.investor-relations {
  color: #1e1e1e;
}
.investor-relations .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .investor-relations .top .banner {
    padding-top: 128%;
  }
}
.investor-relations .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.investor-relations .top .t-nav {
  height: 0.72rem;
  background: #F7F8FA;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.investor-relations .top .t-nav .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.8rem;
  padding: 0.24rem 0;
}
.investor-relations .top .t-nav .name.on {
  padding-bottom: 0.22rem;
  border-bottom: 2px solid #d71921;
}
.investor-relations .top .t-nav .name:last-child {
  margin-right: 0;
}
.investor-relations .con-main .wal {
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal {
    padding-top: 32px;
    padding-bottom: 64px;
  }
}
.investor-relations .con-main .wal .hry-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.investor-relations .con-main .wal .hry-nav a {
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.investor-relations .con-main .wal .hry-nav img {
  width: 0.24rem;
  height: 0.24rem;
}
.investor-relations .con-main .wal .hry-nav .breadcrumb {
  color: #767676;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.investor-relations .con-main .wal h1 {
  margin-top: 0.64rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
  position: relative;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal h1 {
    margin-top: 0;
    font-size: 24px;
    line-height: 32px;
  }
}
.investor-relations .con-main .wal h1::after {
  content: /static/pages/css/"";
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  bottom: -0.24rem;
  left: 0;
  background: #d71921;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal h1::after {
    width: 24px;
    height: 4px;
  }
}
.investor-relations .con-main .wal .info-col {
  margin-top: 0.56rem;
  padding: 0.32rem;
  border: 1px solid #E6E6E6;
  height: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .info-col {
    margin-top: 32px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 32px 16px;
    height: auto;
  }
}
.investor-relations .con-main .wal .info-col .com-rmb {
  width: 4.16rem;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .info-col .com-rmb {
    width: 100%;
  }
}
.investor-relations .con-main .wal .info-col .com-rmb .label {
  line-height: 0.24rem;
  font-size: 0.2rem;
  font-family: "fontFamily-B";
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .info-col .com-rmb .label {
    font-size: 16px;
    line-height: 24px;
  }
}
.investor-relations .con-main .wal .info-col .com-rmb .num-i {
  line-height: 0.24rem;
  color: #333333;
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .info-col .com-rmb .num-i {
    margin-top: 16px;
    line-height: 24px;
    font-size: 14px;
    color: #333333;
  }
}
.investor-relations .con-main .wal .info-col .com-rmb .num-i .num {
  color: #d71921;
  font-family: "fontFamily-Num";
  font-size: 0.48rem;
  line-height: 0.56rem;
  display: inline-block;
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .info-col .com-rmb .num-i .num {
    line-height: 48px;
    font-size: 40px;
    margin-right: 8px;
  }
}
.investor-relations .con-main .wal .info-col .li-num {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  padding: 0 0.32rem;
  border-left: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .info-col .li-num {
    width: 50%;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
    margin-top: 32px;
    padding-left: 16px;
  }
  .investor-relations .con-main .wal .info-col .li-num:nth-child(2n) {
    padding-left: 0;
    border-left: none;
  }
  .investor-relations .con-main .wal .info-col .li-num:nth-child(4) {
    margin-top: 48px;
  }
  .investor-relations .con-main .wal .info-col .li-num:nth-child(5) {
    margin-top: 48px;
  }
}
.investor-relations .con-main .wal .info-col .li-num .label {
  line-height: 0.24rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .info-col .li-num .label {
    line-height: 24px;
    font-size: 14px;
  }
}
.investor-relations .con-main .wal .info-col .li-num .num {
  font-family: "fontFamily-Num";
  font-size: 0.32rem;
  line-height: 0.4rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .info-col .li-num .num {
    margin-top: 8px;
    line-height: 32px;
    font-size: 24px;
  }
}
.investor-relations .con-main .wal .info-col .li-num .num.red {
  color: #d71921;
}
.investor-relations .con-main .wal .info-col .li-num .num.green {
  color: #009758;
}
.investor-relations .con-main .wal .em-con {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .em-con {
    margin-top: 16px;
    display: block;
  }
}
.investor-relations .con-main .wal .em-con .can-k {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.investor-relations .con-main .wal .em-con .can-k img {
  height: 0.24rem;
  width: 0.24rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .em-con .can-k img {
    width: 24px;
    height: 24px;
  }
}
.investor-relations .con-main .wal .em-con .can-k .txt {
  margin-left: 0.08rem;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .em-con .can-k .txt {
    font-size: 14px;
    line-height: 24px;
    margin-left: 8px;
  }
}
.investor-relations .con-main .wal .em-con .prompt {
  color: #767676;
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .em-con .prompt {
    margin-top: 16px;
    font-size: 12px;
    line-height: 20px;
  }
}
.investor-relations .con-main .wal .sel-ta {
  margin-top: 0.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.investor-relations .con-main .wal .sel-ta .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.investor-relations .con-main .wal .sel-ta .btns .btn {
  width: 2.08rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1px;
  background: -webkit-linear-gradient(225deg, transparent 6px, #1e1e1e 0);
  background: linear-gradient(225deg, transparent 6px, #1e1e1e 0);
  margin-right: 0.32rem;
  cursor: pointer;
  -webkit-transition: All 0.1s ease;
  transition: All 0.1s ease;
}
.investor-relations .con-main .wal .sel-ta .btns .btn:hover {
  background: -webkit-linear-gradient(225deg, transparent 6px, #d71921 0);
  background: linear-gradient(225deg, transparent 6px, #d71921 0);
}
.investor-relations .con-main .wal .sel-ta .btns .btn:hover .box_inner {
  background: -webkit-linear-gradient(225deg, transparent 6px, #d71921 0);
  background: linear-gradient(225deg, transparent 6px, #d71921 0);
  color: #fff;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .sel-ta .btns .btn {
    width: 120px;
    height: 40px;
    margin-right: 8px;
  }
}
.investor-relations .con-main .wal .sel-ta .btns .btn.on {
  background: -webkit-linear-gradient(225deg, transparent 6px, #d71921 0);
  background: linear-gradient(225deg, transparent 6px, #d71921 0);
}
.investor-relations .con-main .wal .sel-ta .btns .btn.on:hover {
  opacity: 0.8;
}
.investor-relations .con-main .wal .sel-ta .btns .btn.on .box_inner {
  background: -webkit-linear-gradient(225deg, transparent 6px, #d71921 0);
  background: linear-gradient(225deg, transparent 6px, #d71921 0);
  color: #fff;
}
.investor-relations .con-main .wal .sel-ta .btns .btn .box_inner {
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(225deg, transparent 6px, #fff 0);
  background: linear-gradient(225deg, transparent 6px, #fff 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .sel-ta .btns .btn .box_inner {
    font-size: 12px;
    line-height: 24px;
  }
}
.investor-relations .con-main .wal .sel-ta .year {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
.investor-relations .con-main .wal .sel-ta .year .layui-form {
  width: 2.08rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .sel-ta .year .layui-form {
    width: 80px;
  }
}
.investor-relations .con-main .wal .sel-ta .year .layui-form .layui-input {
  height: 0.56rem;
  padding-left: 0.16rem;
  border: 1px solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .sel-ta .year .layui-form .layui-input {
    height: 40px;
    padding-left: 8px;
    font-size: 12px;
  }
}
.investor-relations .con-main .wal .sel-ta .year .layui-form .layui-form-select dl {
  top: 0.6rem;
}
.investor-relations .con-main .wal .sel-ta .year .layui-form .layui-form-select .layui-edge {
  border-top-color: #000;
  right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .investor-relations .con-main .wal .sel-ta .year .layui-form .layui-form-select dl dd {
    font-size: 12px;
  }
}
.investor-relations .con-main .wal .sel-ta .year .layui-form .layui-form-select dl dd.layui-this {
  background-color: #d71921;
}
.investor-relations .con-main .wal .table {
  margin-top: 0.32rem;
}
.investor-relations .con-main .wal .table table {
  width: 100%;
  font-size: 0.16rem;
}
.investor-relations .con-main .wal .table table tr {
  height: 0.88rem;
}
.investor-relations .con-main .wal .table table tr:first-child {
  border-top: 1px solid #E6E6E6;
}
.investor-relations .con-main .wal .table table tr:nth-child(2n) {
  background: #F8F8F8;
}
.investor-relations .con-main .wal .table table tr td:nth-child(1) {
  padding-left: 0.32rem;
  width: 2.4rem;
}
.investor-relations .con-main .wal .table table tr td:nth-child(3) {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-align: right;
}
.investor-relations .con-main .wal .table table tr td:nth-child(4) {
  width: 1.77rem;
  text-align: right;
  padding-right: 0.32rem;
}
.investor-relations .con-main .wal .table table tr td a img {
  width: 0.24rem;
  height: 0.24rem;
}
.investor-relations .con-main .wal .table table tr td a span {
  display: inline-block;
  line-height: 0.24rem;
}
.investor-relations .con-main .wal .table.phone-show {
  margin-top: 32px;
}
.investor-relations .con-main .wal .table.phone-show .table-li {
  padding: 16px 8px 16px 16px;
}
.investor-relations .con-main .wal .table.phone-show .table-li:first-child {
  border-top: 1px solid #D9D9D9;
}
.investor-relations .con-main .wal .table.phone-show .table-li:nth-child(2n) {
  background: #F8F8F8;
}
.investor-relations .con-main .wal .table.phone-show .table-li .li-fe {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.investor-relations .con-main .wal .table.phone-show .table-li .li-fe .fe-rigth {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.investor-relations .con-main .wal .table.phone-show .table-li .li-fe .fe-rigth .fie {
  font-size: 12px;
  line-height: 24px;
  margin-right: 25px;
}
.investor-relations .con-main .wal .table.phone-show .table-li .date {
  margin-top: 8px;
  line-height: 24px;
  font-size: 12px;
}
.investor-relations .con-main .wal .pagination-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.64rem;
}
.investor-relations .con-main .wal .to-ul {
  margin: 32px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.floor-demand {
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .floor-demand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.floor-demand .left-txt {
  width: 3.6rem;
}
@media screen and (max-width: 800px) {
  .floor-demand .left-txt {
    width: 100%;
  }
}
.floor-demand .left-txt .name {
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  line-height: 0.48rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .floor-demand .left-txt .name {
    font-size: 24px;
    line-height: 32px;
  }
}
.floor-demand .left-txt .name::after {
  content: /static/pages/css/"";
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  bottom: -0.24rem;
  left: 0;
  background: #d71921;
}
@media screen and (max-width: 800px) {
  .floor-demand .left-txt .name::after {
    width: 24px;
    height: 4px;
    bottom: -16px;
  }
}
.floor-demand .left-txt .name-2 {
  margin-top: 0.96rem;
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: "fontFamily-B";
}
@media screen and (max-width: 800px) {
  .floor-demand .left-txt .name-2 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 48px;
  }
}
.floor-demand .left-txt .name-3 {
  margin-top: 0.16rem;
  line-height: 0.24rem;
  font-size: 0.16rem;
  color: #767676;
}
@media screen and (max-width: 800px) {
  .floor-demand .left-txt .name-3 {
    color: #1e1e1e;
    margin-top: 8px;
    line-height: 24px;
    font-size: 14px;
    padding-left: 22px;
    position: relative;
  }
  .floor-demand .left-txt .name-3::after {
    content: "?";
    top: 0;
    position: absolute;
    left: 3px;
  }
  .floor-demand .left-txt .name-3:last-child {
    margin-top: 0;
  }
}
.floor-demand .right-from {
  width: 9.28rem;
}
@media screen and (max-width: 800px) {
  .floor-demand .right-from {
    width: 100%;
    margin-top: 32px;
  }
}
.floor-demand .right-from .from .from-col {
  margin-bottom: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .floor-demand .right-from .from .from-col {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.floor-demand .right-from .from .from-col input {
  width: calc(50% - 0.16rem);
  height: 0.56rem;
  border: 1px solid #E6E6E6;
  padding: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .floor-demand .right-from .from .from-col input {
    height: 48px;
    padding: 16px;
    width: 100%;
    margin-bottom: 16px;
    font-size: 14px;
  }
}
.floor-demand .right-from .from .from-col input::-webkit-input-placeholder {
  color: #767676;
}
.floor-demand .right-from .from .from-col input::-moz-placeholder {
  color: #767676;
}
.floor-demand .right-from .from .from-col input:-ms-input-placeholder {
  color: #767676;
}
.floor-demand .right-from .from .from-col input::placeholder {
  color: #767676;
}
.floor-demand .right-from .from .from-col textarea {
  width: 100%;
  height: 1.6rem;
  padding: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  border: 1px solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .floor-demand .right-from .from .from-col textarea {
    height: 120px;
    padding: 12px 16px;
    line-height: 24px;
    font-size: 14px;
  }
}
.floor-demand .right-from .from .from-col textarea::-webkit-input-placeholder {
  color: #767676;
}
.floor-demand .right-from .from .from-col textarea::-moz-placeholder {
  color: #767676;
}
.floor-demand .right-from .from .from-col textarea:-ms-input-placeholder {
  color: #767676;
}
.floor-demand .right-from .from .from-col textarea::placeholder {
  color: #767676;
}
.floor-demand .right-from .from .from-col .-code {
  position: relative;
  width: calc(50% - 0.16rem);
}
.floor-demand .right-from .from .from-col .-code input {
  width: 100%;
  padding-right: 1.2rem;
}
.floor-demand .right-from .from .from-col .-code img {
  position: absolute;
  right: 0.16rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 1.04rem;
  height: 0.32rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .floor-demand .right-from .from .from-col .-code {
    width: 100%;
    margin-top: 0.32rem;
  }
  .floor-demand .right-from .from .from-col .-code input {
    padding-right: 1.8rem;
    margin-bottom: 0;
  }
  .floor-demand .right-from .from .from-col .-code img {
    width: 1.54rem;
    height: 0.8rem;
  }
}
.floor-demand .right-from .from .from-col .checkbox-col {
  margin-left: 0.32rem;
  margin-right: auto;
}
.floor-demand .right-from .from .from-col .checkbox-col .g-btn {
  margin-top: 0;
}
.floor-demand .right-from .from .checkbox-col .checkbox {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.floor-demand .right-from .from .checkbox-col .checkbox.on .checkbox-inner .true {
  display: block;
}
.floor-demand .right-from .from .checkbox-col .checkbox.on .checkbox-inner .false {
  display: none;
}
.floor-demand .right-from .from .checkbox-col .checkbox:first-child {
  margin-top: 0;
}
.floor-demand .right-from .from .checkbox-col .checkbox .checkbox-inner {
  width: 0.24rem;
  height: 0.24rem;
}
.floor-demand .right-from .from .checkbox-col .checkbox .checkbox-inner img {
  width: 100%;
  height: 100%;
}
.floor-demand .right-from .from .checkbox-col .checkbox .checkbox-inner .true {
  display: none;
}
.floor-demand .right-from .from .checkbox-col .checkbox .checkbox-inner .false {
  display: block;
}
.floor-demand .right-from .from .checkbox-col .checkbox .check-text {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-left: 0.08rem;
}
.floor-demand .right-from .from .checkbox-col .checkbox .check-text .red {
  color: red;
}
.floor-demand .right-from .from .checkbox-col .checkbox .check-text a {
  text-decoration: underline;
}
.floor-demand .right-from .from .checkbox-col .g-btn {
  margin-top: 0.32rem;
}
.floor-demand .right-from .from .btn-a {
  display: block;
  margin-top: 16px;
  height: 48px;
  width: 100%;
  background: #d71921;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-us {
  color: #1e1e1e;
}
.contact-us .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contact-us .top .banner {
    padding-top: 128%;
  }
}
.contact-us .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.contact-us .con-main {
  position: relative;
  z-index: -10;
}
.contact-us .con-main .wal {
  padding-top: 0.32rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .contact-us .con-main .wal {
    padding-top: 32px;
    padding-bottom: 64px;
  }
}
.contact-us .con-main .wal .hry-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-us .con-main .wal .hry-nav a {
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.contact-us .con-main .wal .hry-nav img {
  width: 0.24rem;
  height: 0.24rem;
}
.contact-us .con-main .wal .hry-nav .breadcrumb {
  color: #767676;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.contact-us .map-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.64rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 32px;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.contact-us .map-main .map-box {
  width: 6.88rem;
  height: 6rem;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main .map-box {
    width: 100%;
    height: 304px;
  }
}
.contact-us .map-main .map-box #mapBlack {
  width: 100%;
  height: 100%;
}
.contact-us .map-main .map-box #mapBlack .anchorBL {
  display: none !important;
}
.contact-us .map-main .map-info {
  width: 5.68rem;
}
.contact-us .map-main .map-info h1 {
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  line-height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main .map-info h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
.contact-us .map-main .map-info .info-ul {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main .map-info .info-ul {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.contact-us .map-main .map-info .info-ul .info-li {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main .map-info .info-ul .info-li {
    margin-top: 16px;
  }
}
.contact-us .map-main .map-info .info-ul .info-li:first-child {
  margin-top: 0;
}
.contact-us .map-main .map-info .info-ul .info-li .info-lable {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main .map-info .info-ul .info-li .info-lable {
    line-height: 24px;
    font-size: 14px;
  }
}
.contact-us .map-main .map-info .info-ul .info-li .value {
  margin-top: 0.08rem;
  color: #d71921;
  font-family: "fontFamily-Num";
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main .map-info .info-ul .info-li .value {
    font-size: 20px;
    line-height: 32px;
    margin-top: 0;
  }
}
.contact-us .map-main .map-info .link {
  border-top: 1px solid #E6E6E6;
  padding: 0.4rem 0;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main .map-info .link {
    padding: 16px 0;
  }
}
.contact-us .map-main .map-info .link .link-key {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main .map-info .link .link-key {
    line-height: 24px;
    font-size: 14px;
  }
}
.contact-us .map-main .map-info .i-c {
  border-top: 1px solid #E6E6E6;
  padding-top: 0.4rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-us .map-main .map-info .i-c {
    padding-top: 16px;
    padding-bottom: 32px;
    line-height: 24px;
    font-size: 14px;
  }
}

.search-result {
  color: #1e1e1e;
}
@media screen and (max-width: 800px) {
  .search-result {
    padding-top: 24px;
  }
}
.search-result .wal .hry-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-result .wal .hry-nav a {
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.search-result .wal .hry-nav img {
  width: 0.24rem;
  height: 0.24rem;
}
.search-result .wal .hry-nav .breadcrumb {
  color: #767676;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.search-result .wal .main {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .search-result .wal .main {
    margin-top: 0;
  }
}
.search-result .wal .main .left-cell {
  width: 3.28rem;
}
.search-result .wal .main .left-cell h1 {
  line-height: 0.48rem;
  font-size: 0.4rem;
  font-family: "fontFamily-B";
}
.search-result .wal .main .left-cell .tob {
  margin-top: 0.16rem;
  color: #767676;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.search-result .wal .main .left-cell .ul {
  margin-top: 0.48rem;
  padding-top: 0.24rem;
  border-top: 1px solid #E6E6E6;
}
.search-result .wal .main .left-cell .ul li {
  cursor: pointer;
  margin-bottom: 0.16rem;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.search-result .wal .main .right-con {
  width: calc(100% - 3.6rem);
}
@media screen and (max-width: 800px) {
  .search-result .wal .main .right-con {
    width: 100%;
  }
}
.search-result .wal .main .right-con .search {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .search-result .wal .main .right-con .search {
    width: 100%;
  }
}
.search-result .wal .main .right-con .search input {
  width: 6.88rem;
  height: 0.56rem;
  border: 1px solid #D9D9D9;
  padding: 0.16rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .search-result .wal .main .right-con .search input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #D9D9D9;
    padding: 16px 40px;
    height: 56px;
    font-size: 14px;
    line-height: 24px;
  }
}
.search-result .wal .main .right-con .search .search-line {
  position: absolute;
  right: 0.16rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .search-result .wal .main .right-con .search .search-line {
    left: 0;
    right: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.search-result .wal .main .right-con .search .search-line img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .search-result .wal .main .right-con .search .search-line img {
    width: 24px;
    height: 24px;
  }
}
.search-result .wal .main .right-con .search .search-clone {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.search-result .wal .main .right-con .search .search-clone.show {
  display: block;
}
.search-result .wal .main .right-con .search .search-clone img {
  width: 24px;
  height: 24px;
}
.search-result .wal .main .right-con .nav-box {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.search-result .wal .main .right-con .nav-box .nav {
  margin-top: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 1px solid #D9D9D9;
}
.search-result .wal .main .right-con .nav-box .nav .nav-li {
  margin-right: 59px;
  font-size: 12px;
  line-height: 16px;
  padding-bottom: 16px;
}
.search-result .wal .main .right-con .nav-box .nav .nav-li.on {
  border-bottom: 2px solid #DE0515;
}
.search-result .wal .main .right-con .nav-box .tolb {
  padding: 16px 0;
  line-height: 16px;
  font-size: 12px;
}
.search-result .wal .main .right-con .nav-box .tolb .red {
  color: #d71921;
}
.search-result .wal .main .right-con .list-ul {
  margin-top: 0.8rem;
  border-top: 1px solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .search-result .wal .main .right-con .list-ul {
    margin-top: 0;
  }
}
.search-result .wal .main .right-con .list-ul .list-li {
  padding: 0.24rem 0.16rem;
}
@media screen and (max-width: 800px) {
  .search-result .wal .main .right-con .list-ul .list-li {
    padding: 16px 0;
    border-bottom: 1px solid #E6E6E6;
  }
}
.search-result .wal .main .right-con .list-ul .list-li:nth-child(2n) {
  background: #F8F8F8;
}
@media screen and (max-width: 800px) {
  .search-result .wal .main .right-con .list-ul .list-li:nth-child(2n) {
    background-color: #ffffff;
  }
}
.search-result .wal .main .right-con .list-ul .list-li a {
  font-size: 0.16rem;
  color: #1E1E1E;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .search-result .wal .main .right-con .list-ul .list-li a {
    font-size: 14px;
    line-height: 24px;
  }
}
.search-result .wal .main .right-con .pagination-box {
  padding-top: 0.64rem;
  padding-bottom: 1.6rem;
}
.search-result .wal .main .right-con .g-btn-box {
  padding: 32px 0 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.law-body {
  color: #1e1e1e;
}
.law-body .con-main .wal {
  padding-top: 0.32rem;
}
.law-body .con-main .wal .hry-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.law-body .con-main .wal .hry-nav a {
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.law-body .con-main .wal .hry-nav img {
  width: 0.24rem;
  height: 0.24rem;
}
.law-body .con-main .wal .hry-nav .breadcrumb {
  color: #767676;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.law-body .con-main .law-main {
  width: 9.28rem;
  padding-top: 0.64rem;
  padding-bottom: 1.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .law-body .con-main .law-main {
    padding-top: 32px;
    padding-bottom: 64px;
    width: 100%;
  }
}
.law-body .con-main .law-main h1 {
  line-height: 0.48rem;
  font-size: 0.4rem;
  font-family: "fontFamily-B";
  text-align: center;
}
@media screen and (max-width: 800px) {
  .law-body .con-main .law-main h1 {
    line-height: 32px;
    font-size: 24px;
  }
}
.law-body .con-main .law-main .state {
  text-align: center;
  color: #767676;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-top: 0.16rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed #E6E6E6;
}
@media screen and (max-width: 800px) {
  .law-body .con-main .law-main .state {
    margin-top: 16px;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 32px;
  }
}
.law-body .con-main .law-main .text {
  margin-top: 0.4rem;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 800px) {
  .law-body .con-main .law-main .text {
    margin-top: 32px;
    line-height: 24px;
    font-size: 16px;
  }
}

.privacy-policy {
  color: #1e1e1e;
}
.privacy-policy .con-main > .wal {
  padding-top: 0.32rem;
}
.privacy-policy .con-main > .wal .hry-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.privacy-policy .con-main > .wal .hry-nav a {
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.privacy-policy .con-main > .wal .hry-nav img {
  width: 0.24rem;
  height: 0.24rem;
}
.privacy-policy .con-main > .wal .hry-nav .breadcrumb {
  color: #767676;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
.privacy-policy .con-main .law-main {
  width: 9.28rem;
  padding-top: 0.64rem;
  padding-bottom: 1.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .privacy-policy .con-main .law-main {
    padding-top: 32px;
    padding-bottom: 64px;
    width: 100%;
  }
}
.privacy-policy .con-main .law-main h1 {
  line-height: 0.48rem;
  font-size: 0.4rem;
  font-family: "fontFamily-B";
  text-align: center;
}
@media screen and (max-width: 800px) {
  .privacy-policy .con-main .law-main h1 {
    line-height: 32px;
    font-size: 24px;
  }
}
.privacy-policy .con-main .law-main .state {
  text-align: center;
  color: #767676;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-top: 0.16rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed #E6E6E6;
}
@media screen and (max-width: 800px) {
  .privacy-policy .con-main .law-main .state {
    text-align: left;
    margin-top: 16px;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 32px;
  }
}
.privacy-policy .con-main .law-main .text {
  margin-top: 0.4rem;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 800px) {
  .privacy-policy .con-main .law-main .text {
    margin-top: 32px;
    line-height: 24px;
    font-size: 16px;
  }
}

.error-body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  overflow-y: hidden;
}
.error-body .bgi img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.error-body .main {
  padding-bottom: 21.5vh;
}
@media screen and (max-width: 800px) {
  .error-body .main {
    padding-bottom: 96px;
  }
}
.error-body .main .code {
  text-align: center;
  line-height: 120px;
  font-size: 112px;
  color: #FFFFFF;
  font-family: "fontFamily-Num";
}
@media screen and (max-width: 800px) {
  .error-body .main .code {
    font-size: 72px;
    line-height: 80px;
  }
}
.error-body .main .info {
  text-align: center;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 32px;
}
@media screen and (max-width: 800px) {
  .error-body .main .info {
    line-height: 24px;
    font-size: 16px;
    margin-top: 16px;
  }
}
.error-body .main .btns {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .error-body .main .btns {
    margin-top: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.error-body .main .btns .btn {
  width: 2.08rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .error-body .main .btns .btn {
    width: 152px;
    height: 40px;
    line-height: 24px;
    font-size: 12px;
  }
}
.error-body .main .btns .btn.home {
  color: #FFFFFF;
  background: -webkit-linear-gradient(225deg, transparent 6px, #d71921 0);
  background: linear-gradient(225deg, transparent 6px, #d71921 0);
  margin-right: 0.32rem;
}
@media screen and (max-width: 800px) {
  .error-body .main .btns .btn.home {
    margin-right: 0;
  }
}
.error-body .main .btns .btn.home:hover {
  background: -webkit-linear-gradient(225deg, transparent 6px, rgba(215, 25, 33, 0.8) 0);
  background: linear-gradient(225deg, transparent 6px, rgba(215, 25, 33, 0.8) 0);
}
.error-body .main .btns .btn.retun {
  background: -webkit-linear-gradient(225deg, transparent 6px, #ffffff 0);
  background: linear-gradient(225deg, transparent 6px, #ffffff 0);
}
@media screen and (max-width: 800px) {
  .error-body .main .btns .btn.retun {
    margin-top: 16px;
  }
}

.mr-accessory-modal-img.modal {
  max-width: 70%;
  width: 35%;
  padding: 1.5625vw;
  z-index: 9999;
}

.mr-accessory-modal-img img {
  display: block;
  width: 100%;
}

.zoom_img {
  overflow: hidden;
}
.zoom_img img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.zoom_img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.title_bm {
  position: relative;
}
.title_bm::after {
  content: /static/pages/css/"";
  position: absolute;
  width: 0.48rem;
  height: 0.04rem;
  bottom: 0;
  left: 0;
  background: #d71921;
}

.newsDetail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.newsDetail .newsDetail_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.64rem 0 1.6rem 0;
}
.newsDetail .newsDetail_left {
  width: 65.9%;
}
.newsDetail .newsDetail_left .article_head {
  width: 100%;
  font-style: normal;
  text-transform: none;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed #e6e6e6;
}
.newsDetail .newsDetail_left .article_head .title {
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  padding-bottom: 0.16rem;
}
.newsDetail .newsDetail_left .article_head .time {
  font-size: 0.14rem;
  color: #767676;
  line-height: 0.24rem;
}
.newsDetail .newsDetail_left .article_content {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e6e6e6;
}
.newsDetail .newsDetail_left .article_content p {
  padding: 0 0 0.4rem 0;
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  font-style: normal;
  text-transform: none;
}
.newsDetail .newsDetail_left .article_content .img_bm {
  margin-bottom: 0.4rem;
}
.newsDetail .newsDetail_left .article_content .img_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsDetail .newsDetail_left .article_content .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.newsDetail .newsDetail_left .article_content .img_box_two {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 2.8rem;
}
.newsDetail .newsDetail_left .article_content .img_box_two img {
  width: calc((100% - 0.32rem) / 2);
  height: 100%;
}
.newsDetail .newsDetail_left .article_content .img_box_two img.img_bm {
  margin: 0;
}
.newsDetail .newsDetail_left .article_footer {
  padding: 0.32rem 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.newsDetail .newsDetail_left .article_footer .ar_footer_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.newsDetail .newsDetail_left .article_footer .ar_footer_right .pre_bt_a.btn {
  margin-right: 0.32rem;
  background: -webkit-linear-gradient(313deg, transparent 6px, #1e1e1e 0);
  background: linear-gradient(137deg, transparent 6px, #1e1e1e 0);
}
.newsDetail .newsDetail_left .article_footer .ar_footer_right .pre_bt_a.btn .box_inner {
  background: -webkit-linear-gradient(313deg, transparent 6px, #fff 0);
  background: linear-gradient(137deg, transparent 6px, #fff 0);
}
.newsDetail .newsDetail_left .article_footer .ar_footer_right .btn {
  width: 2.08rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1px;
  background: -webkit-linear-gradient(225deg, transparent 6px, #1e1e1e 0);
  background: linear-gradient(225deg, transparent 6px, #1e1e1e 0);
  margin-right: 0.32rem;
  cursor: pointer;
  -webkit-transition: All 0.1s ease;
  transition: All 0.1s ease;
}
@media screen and (max-width: 800px) {
  .newsDetail .newsDetail_left .article_footer .ar_footer_right .btn {
    width: 120px;
    height: 40px;
    margin-right: 8px;
  }
}
.newsDetail .newsDetail_left .article_footer .ar_footer_right .btn.on {
  background: -webkit-linear-gradient(225deg, transparent 6px, #d71921 0);
  background: linear-gradient(225deg, transparent 6px, #d71921 0);
}
.newsDetail .newsDetail_left .article_footer .ar_footer_right .btn.on:hover {
  opacity: 0.8;
}
.newsDetail .newsDetail_left .article_footer .ar_footer_right .btn.on .box_inner {
  background: -webkit-linear-gradient(225deg, transparent 6px, #d71921 0);
  background: linear-gradient(225deg, transparent 6px, #d71921 0);
  color: #fff;
}
.newsDetail .newsDetail_left .article_footer .ar_footer_right .btn .box_inner {
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(225deg, transparent 6px, #fff 0);
  background: linear-gradient(225deg, transparent 6px, #fff 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 0.24rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .newsDetail .newsDetail_left .article_footer .ar_footer_right .btn .box_inner {
    font-size: 12px;
    line-height: 24px;
  }
}
.newsDetail .newsDetail_left .article_footer .share {
  font-size: 0.16rem;
  color: #767676;
  line-height: 0.24rem;
  font-style: normal;
  text-transform: none;
}
.newsDetail .newsDetail_left .article_footer ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.newsDetail .newsDetail_left .article_footer ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0.4rem;
  height: 0.4rem;
}
.newsDetail .newsDetail_left .article_footer ul li a img {
  width: 100%;
  height: 100%;
}
.newsDetail .fixed_box {
  display: none;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.newsDetail .fixed_box .article_fixed {
  position: -webkit-sticky;
  position: sticky;
  right: 30.4%;
  bottom: 1rem;
  z-index: 98;
}
.newsDetail .fixed_box .article_fixed img {
  width: 100%;
  cursor: pointer;
}
.newsDetail .fixed_box .article_fixed .up_top {
  width: 0.56rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.16rem;
}
.newsDetail .fixed_box .article_fixed .g-share {
  width: 0.56rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsDetail .fixed_box .article_fixed .g-share ul {
  position: absolute;
  left: -0.08rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: 0;
  -webkit-transform: scale(0.01);
      -ms-transform: scale(0.01);
          transform: scale(0.01);
}
.newsDetail .fixed_box .article_fixed .g-share:hover ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-100%) scale(1);
      -ms-transform: translateX(-100%) scale(1);
          transform: translateX(-100%) scale(1);
}
.newsDetail .newsDetail_right {
  width: 23.29%;
  font-style: normal;
  text-transform: none;
}
.newsDetail .newsDetail_right .sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0.5rem;
}
.newsDetail .newsDetail_right .share_title {
  font-family: "fontFamily-B";
  font-size: 0.24rem;
  color: #1e1e1e;
  line-height: 0.32rem;
}
.newsDetail .newsDetail_right .share_list {
  padding-bottom: 0.16rem;
}
.newsDetail .newsDetail_right .share_list .item {
  padding: 0.24rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.newsDetail .newsDetail_right .share_list .item .title {
  font-size: 0.2rem;
  color: #1e1e1e;
  line-height: 0.32rem;
  font-style: normal;
  text-transform: none;
  padding-bottom: 0.08rem;
}
.newsDetail .newsDetail_right .share_list .item .title:hover {
  text-decoration: underline;
}
.newsDetail .newsDetail_right .share_list .item .time {
  font-size: 0.14rem;
  color: #767676;
  line-height: 0.24rem;
}

.coreCompetencies {
  width: 100%;
}
.coreCompetencies .core_banner {
  width: 100%;
}
.coreCompetencies .core_banner .banner_img {
  width: 100%;
}
.coreCompetencies .core_banner .banner_img img {
  width: 100%;
}
.coreCompetencies .core_design {
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.coreCompetencies .core_design .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.coreCompetencies .core_design .head .left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.coreCompetencies .core_design .head .left .title {
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  padding-bottom: 0.28rem;
}
.coreCompetencies .core_design .head .left .title_icon {
  margin-top: 0.64rem;
  width: 0.48rem;
  height: 0.48rem;
}
.coreCompetencies .core_design .head .left .title_icon img {
  width: 100%;
  object-fit: cover;
}
.coreCompetencies .core_design .head .right {
  width: 65.9%;
}
.coreCompetencies .core_design .head .right .core_des {
  width: 100%;
}
.coreCompetencies .core_design .head .right .core_des p {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  padding-bottom: 0.4rem;
}
.coreCompetencies .core_design .head .right .core_num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.coreCompetencies .core_design .head .right .core_num .num_item:first-child {
  padding: 0 0 0 0;
  border-left: none;
}
.coreCompetencies .core_design .head .right .core_num .num_item {
  width: 2.4rem;
  padding: 0 0 0 0.32rem;
  border-left: 1px solid #e6e6e6;
}
.coreCompetencies .core_design .head .right .core_num .num_item .num {
  display: inline-block;
  width: auto;
  font-family: "fontFamily-Num";
  font-size: 0.4rem;
  color: #d71921;
  line-height: 0.48rem;
  position: relative;
}
.coreCompetencies .core_design .head .right .core_num .num_item .num:after {
  content: "+";
  position: absolute;
  top: 0;
  right: -0.16rem;
  font-weight: 500;
  font-size: 0.16rem;
  color: #d71921;
  line-height: 0.24rem;
}
.coreCompetencies .core_design .head .right .core_num .num_item .num_text {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
}
.coreCompetencies .core_design .content {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.coreCompetencies .core_design .content .left {
  width: calc((100% - 0.32rem) / 2);
  margin-right: 0.32rem;
}
.coreCompetencies .core_design .content .left .img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 63.95%;
}
.coreCompetencies .core_design .content .left .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coreCompetencies .core_design .content .left .img img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.coreCompetencies .core_design .content .left .img_des {
  width: 100%;
  padding: 0.36rem 1.54rem 0.36rem 0.32rem;
  background: #f7f8fa;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.coreCompetencies .core_design .content .left .img_des .icon {
  width: 0.64rem;
  height: 0.4rem;
  margin-right: 0.24rem;
}
.coreCompetencies .core_design .content .left .img_des .icon img {
  width: 100%;
}
.coreCompetencies .core_design .content .left .img_des .test {
  font-size: 0.2rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.coreCompetencies .core_design .content .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc((100% - 0.32rem) / 2);
}
.coreCompetencies .core_design .content .right .desgin_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.coreCompetencies .core_design .content .right .desgin_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.coreCompetencies .core_design .content .right .img_box {
  width: calc((100% - 0.32rem) / 2);
}
@media screen and (min-width: 800px) {
  .coreCompetencies .core_design .content .right .img_box {
    width: calc((100% - ((2 - 1) * 0.32rem)) / 2);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .coreCompetencies .core_design .content .right .img_box:nth-child(2n) {
    margin-right: 0;
  }
  .coreCompetencies .core_design .content .right .img_box:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .coreCompetencies .core_design .content .right .img_box {
    width: calc((100% - ((1 - 1) * 8px)) / 1);
    margin-right: 8px;
    margin-top: 8px;
  }
  .coreCompetencies .core_design .content .right .img_box:nth-child(1n) {
    margin-right: 0;
  }
  .coreCompetencies .core_design .content .right .img_box:nth-child(-n+1) {
    margin-top: 0;
  }
}
.coreCompetencies .core_design .content .right .img_box .img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 63.41%;
}
.coreCompetencies .core_design .content .right .img_box .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coreCompetencies .core_design .content .right .img_box .img img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.coreCompetencies .core_design .content .right .img_box .des {
  width: 100%;
  padding: 0.16rem 0 0.16rem 0.16rem;
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  background: #f7f8fa;
}
.coreCompetencies .core_production {
  background: #f7f8fa;
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.coreCompetencies .core_production .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.coreCompetencies .core_production .head .left .title {
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  padding-bottom: 0.28rem;
}
.coreCompetencies .core_production .head .left .title_icon {
  margin-top: 0.64rem;
  width: 0.48rem;
  height: 0.48rem;
}
.coreCompetencies .core_production .head .left .title_icon img {
  width: 100%;
  object-fit: cover;
}
.coreCompetencies .core_production .head .right {
  width: 65.9%;
}
.coreCompetencies .core_production .head .right .core_des {
  width: 100%;
}
.coreCompetencies .core_production .head .right .core_des p {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  padding-bottom: 0.4rem;
}
.coreCompetencies .core_production .head .right .core_num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.coreCompetencies .core_production .head .right .core_num .num_item:first-child {
  padding: 0 0 0 0;
  border-left: none;
}
.coreCompetencies .core_production .head .right .core_num .num_item {
  width: 2.4rem;
  padding: 0 0 0 0.32rem;
  border-left: 1px solid #e6e6e6;
}
.coreCompetencies .core_production .head .right .core_num .num_item .num {
  display: inline-block;
  width: auto;
  font-family: "fontFamily-Num";
  font-size: 0.4rem;
  color: #d71921;
  line-height: 0.48rem;
  position: relative;
}
.coreCompetencies .core_production .head .right .core_num .num_item .num:after {
  content: "+";
  position: absolute;
  top: 0;
  right: -0.16rem;
  font-weight: 500;
  font-size: 0.16rem;
  color: #d71921;
  line-height: 0.24rem;
}
.coreCompetencies .core_production .head .right .core_num .num_item .num.special:after {
  content: "Million";
  position: absolute;
  top: 0;
  right: -0.57rem;
  font-size: 0.16rem;
  color: #d71921;
  line-height: 0.24rem;
}
.coreCompetencies .core_production .head .right .core_num .num_item .num_text {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
}
.coreCompetencies .core_production .content {
  position: relative;
  margin-top: 0.8rem;
}
.coreCompetencies .core_production .content .left {
  width: 6.88rem;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: " #F7F8FA";
}
.coreCompetencies .core_production .content .left .production_list {
  padding: 0.64rem 0 0.56rem 0.32rem;
}
.coreCompetencies .core_production .content .left .production_list .production_list_ul {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.coreCompetencies .core_production .content .left .production_list .production_list_ul .production_list_li {
  margin-top: 0.24rem;
  padding: 0 0 0 0.32rem;
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.24rem;
  cursor: pointer;
}
.coreCompetencies .core_production .content .left .production_list .production_list_ul .production_list_li.hover {
  position: relative;
  font-size: 0.24rem;
  color: #ffffff;
  line-height: 0.32rem;
  border-left: 0.04rem solid #ffffff;
}
.coreCompetencies .core_production .content .left .production_list .production_list_ul .production_list_li:first-child {
  margin-top: 0;
}
.coreCompetencies .core_production .content .right {
  position: absolute;
  right: 0;
  top: 0.64rem;
  width: 65.9%;
  height: auto;
}
.coreCompetencies .core_production .content .right img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.coreCompetencies .core_production .content .right .production_item {
  position: relative;
  width: 100%;
  padding-top: 62.93%;
  display: none;
  overflow: hidden;
}
.coreCompetencies .core_production .content .right .production_item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coreCompetencies .core_production .content .right .production_item.active {
  display: block;
}
.coreCompetencies .core_production .content .right .switch_box {
  position: absolute;
  left: 0.32rem;
  bottom: 0.32rem;
}
.coreCompetencies .core_production .content .right .switch_box .text {
  font-family: "fontFamily-B";
  font-size: 0.32rem;
  color: #ffffff;
  line-height: 40px;
  margin-bottom: 0.16rem;
}
.coreCompetencies .core_production .content .right .switch_box .switch_bt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.coreCompetencies .core_production .content .right .switch_box .switch_bt .left_bt {
  width: 0.56rem;
  height: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 0.08rem;
  cursor: pointer;
}
.coreCompetencies .core_production .content .right .switch_box .switch_bt .left_bt img {
  width: 0.24rem;
  height: 0.24rem;
}
.coreCompetencies .core_production .content .right .switch_box .switch_bt .right_bt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0.56rem;
  height: 0.56rem;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.coreCompetencies .core_production .content .right .switch_box .switch_bt .right_bt img {
  width: 0.24rem;
  height: 0.24rem;
}
.coreCompetencies .core_quality {
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.coreCompetencies .core_quality .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.coreCompetencies .core_quality .head .left .title {
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  padding-bottom: 0.28rem;
}
.coreCompetencies .core_quality .head .left .title_icon {
  margin-top: 0.64rem;
  width: 0.48rem;
  height: 0.48rem;
}
.coreCompetencies .core_quality .head .left .title_icon img {
  width: 100%;
}
.coreCompetencies .core_quality .head .right {
  width: 65.9%;
}
.coreCompetencies .core_quality .head .right .core_des {
  width: 100%;
}
.coreCompetencies .core_quality .head .right .core_des p {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  padding-bottom: 0.4rem;
}
.coreCompetencies .core_quality .head .right .core_num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.coreCompetencies .core_quality .head .right .core_num .num_item:first-child {
  padding: 0 0 0 0;
  border-left: none;
}
.coreCompetencies .core_quality .head .right .core_num .num_item {
  width: 2.4rem;
  padding: 0 0 0 0.32rem;
  border-left: 1px solid #e6e6e6;
}
.coreCompetencies .core_quality .head .right .core_num .num_item .num {
  display: inline-block;
  width: auto;
  font-family: "fontFamily-Num";
  font-size: 0.4rem;
  color: #d71921;
  line-height: 0.48rem;
  position: relative;
}
.coreCompetencies .core_quality .head .right .core_num .num_item .num:after {
  content: "+";
  position: absolute;
  top: 0;
  right: -0.16rem;
  font-weight: 500;
  font-size: 0.16rem;
  color: #d71921;
  line-height: 0.24rem;
}
.coreCompetencies .core_quality .head .right .core_num .num_item .num.special:after {
  content: "Million";
  position: absolute;
  top: 0;
  right: -0.57rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #d71921;
  line-height: 0.24rem;
}
.coreCompetencies .core_quality .head .right .core_num .num_item .num_text {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
}
.coreCompetencies .core_quality .content {
  margin-top: 0.96rem;
}
.coreCompetencies .core_quality .content ul.pc-show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.coreCompetencies .core_quality .content ul.pc-show li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .coreCompetencies .core_quality .content ul.pc-show li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .coreCompetencies .core_quality .content ul.pc-show li:nth-child(3n) {
    margin-right: 0;
  }
  .coreCompetencies .core_quality .content ul.pc-show li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .coreCompetencies .core_quality .content ul.pc-show li {
    width: calc((100% - ((1 - 1) * 10px)) / 1);
    margin-right: 10px;
    margin-top: 10px;
  }
  .coreCompetencies .core_quality .content ul.pc-show li:nth-child(1n) {
    margin-right: 0;
  }
  .coreCompetencies .core_quality .content ul.pc-show li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.coreCompetencies .core_quality .content ul.pc-show li .img {
  width: 100%;
  position: relative;
  padding-top: 62.5%;
}
.coreCompetencies .core_quality .content ul.pc-show li .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.coreCompetencies .core_quality .content ul.pc-show li:hover img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.coreCompetencies .core_honorary {
  width: 100%;
  position: relative;
}
.coreCompetencies .core_honorary .img_box_bc {
  width: 100%;
}
.coreCompetencies .core_honorary .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 16.18%;
  top: 10%;
}
.coreCompetencies .core_honorary .head .left .title {
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  padding-bottom: 0.28rem;
}
.coreCompetencies .core_honorary .head .left .g-btn a {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  margin-top: 0.32rem;
  border: none;
}
.coreCompetencies .core_honorary .head .left .title_icon {
  margin-top: 0.64rem;
  width: 0.48rem;
  height: 0.48rem;
}
.coreCompetencies .core_honorary .head .left .title_icon img {
  width: 100%;
}
.coreCompetencies .core_honorary .img_enlarge {
  position: absolute;
  width: 10.83%;
  height: 18.09%;
}
.coreCompetencies .core_honorary .img_enlarge .enlarge {
  width: 0.56rem;
  height: 0.56rem;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.coreCompetencies .core_honorary .img_enlarge img {
  width: 100%;
}
.coreCompetencies .core_honorary .img_enlarge:hover .enlarge {
  display: block;
  cursor: pointer;
}
.coreCompetencies .core_honorary .img_1 {
  width: 10.83%;
  height: 33.33%;
  left: 13.33%;
  bottom: 11.42%;
}
.coreCompetencies .core_honorary .img_2 {
  left: 25.83%;
  bottom: 38.09%;
}
.coreCompetencies .core_honorary .img_3 {
  left: 29.58%;
  bottom: 22.85%;
}
.coreCompetencies .core_honorary .img_4 {
  left: 39.21%;
  bottom: 12.38%;
}
.coreCompetencies .core_honorary .img_5 {
  right: 50%;
  top: 33.33%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}
.coreCompetencies .core_honorary .img_6 {
  right: 37.55%;
  bottom: 12.38%;
}
.coreCompetencies .core_honorary .img_7 {
  right: 29.68%;
  bottom: 31.42%;
}
.coreCompetencies .core_honorary .img_8 {
  right: 17.6%;
  bottom: 31.42%;
}
.coreCompetencies .core_footer {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 1.2rem 0 1.52rem 0;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_footer.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
}
.coreCompetencies .core_footer .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  width: 48.33%;
}
.coreCompetencies .core_footer .content h1 {
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  line-height: 0.48rem;
  margin-bottom: 0.64rem;
  position: relative;
  text-align: center;
}
.coreCompetencies .core_footer .content .title::after {
  content: /static/pages/css/"";
  width: 0.48rem;
  height: 0.04rem;
  background: #d71921;
  position: absolute;
  bottom: -0.28rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.coreCompetencies .core_footer .content p {
  text-align: center;
  height: 0.48rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
  margin-bottom: 0.64rem;
}
.coreCompetencies .core_footer .content .g-btn a {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-color: transparent;
  margin-top: 0.32rem;
  border: none;
}

.companyNews .companyNews_banner .banner_img {
  width: 100%;
}
.companyNews .companyNews_banner .banner_img img {
  width: 100%;
}
.companyNews .companyNews-news {
  padding-top: 0.64rem;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list {
  margin-top: 0.64rem;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  padding: 0.4rem 0;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li:first-child {
  padding-top: 0;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 4.8rem;
      -ms-flex: 0 1 4.8rem;
          flex: 0 1 4.8rem;
  padding-right: 0.32rem;
  border-right: 1px dotted #d9d9d9;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._left .img {
  width: 3.28rem;
  height: 2.08rem;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._left .time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #cccccc;
  margin-left: auto;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._left .time .year {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._left .time .date {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.32rem;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._right .title {
  font-family: "fontFamily-B";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._right .context {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #767676;
}
.companyNews .companyNews-news .wal .index-news-inner .news_footer {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.4rem;
  margin-bottom: 1.6rem;
}
.companyNews .companyNews_list ul {
  padding: 0.24rem 0;
}
.companyNews .companyNews_list ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0.4rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.companyNews .companyNews_list ul li .left {
  width: 34.08%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.companyNews .companyNews_list ul li .left .new_img {
  width: 3.28rem;
  height: 2.08rem;
}
.companyNews .companyNews_list ul li .left .new_img img {
  width: 100%;
  object-fit: contain;
}
.companyNews .companyNews_list ul li .left .time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 0.32rem;
}
.companyNews .companyNews_list ul li .left .time .year {
  font-size: 14px;
  color: #cccccc;
  line-height: 24px;
}
.companyNews .companyNews_list ul li .left .time .mouth {
  font-size: 24px;
  color: #cccccc;
  line-height: 32px;
}
.companyNews .companyNews_list ul li .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.32rem;
  border-left: 1px dashed #d9d9d9;
}
.companyNews .companyNews_list ul li .right .new_title {
  font-weight: 500;
  font-size: 0.24rem;
  color: #1e1e1e;
  line-height: 0.32rem;
  margin-bottom: 0.16rem;
}
.companyNews .companyNews_list ul li .right .new_content {
  font-size: 0.16rem;
  color: #767676;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.companyNews .companyNews_list .news_footer {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.4rem;
  margin-bottom: 1.6rem;
}

.lookFuture .look_banner .banner_img {
  width: 100%;
}
.lookFuture .look_banner .banner_img img {
  width: 100%;
}
.lookFuture .look_content {
  background: #f7f8fa;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.lookFuture .look_content .look_item {
  background: #ffffff;
  -webkit-transform: translateY(-0.8rem);
      -ms-transform: translateY(-0.8rem);
          transform: translateY(-0.8rem);
  width: 90.83%;
  padding: 0.8rem 0 0 0.8rem;
  position: relative;
}
.lookFuture .look_content .look_item .look_img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 51.13%;
}
.lookFuture .look_content .look_item .look_img img {
  width: 100%;
}
.lookFuture .look_content .look_item .look_head:first-child {
  padding-top: 0;
}
.lookFuture .look_content .look_item .look_head:nth-last-child(2) {
  padding-bottom: 10%;
  border-bottom: none;
}
.lookFuture .look_content .look_item .look_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e6e6e6;
}
.lookFuture .look_content .look_item .look_head .title {
  font-family: "fontFamily-B";
  font-size: 0.32rem;
  color: #1e1e1e;
  line-height: 0.4rem;
  padding-bottom: 0.28rem;
}
.lookFuture .look_content .look_item .look_head .look_right {
  width: 65.9%;
  padding-right: 2.56rem;
}
.lookFuture .look_content .look_item .look_head .look_right p {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  min-height: 0.15rem;
}
.lookFuture .look_content .look_item .look_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.8rem;
  padding-bottom: 10%;
}
.lookFuture .look_content .look_item .look_footer .title {
  font-family: "fontFamily-B";
  font-size: 0.32rem;
  color: #1e1e1e;
  line-height: 0.4rem;
  padding-bottom: 0.28rem;
}
.lookFuture .look_content .look_item .look_footer .look_right {
  width: 65.9%;
  padding-right: 2.56rem;
}
.lookFuture .look_content .look_item .look_footer .look_right p {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  min-height: 0.15rem;
}

.recruitment .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
.recruitment .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.recruitment .top .t-nav {
  height: 0.72rem;
  background: #f6f6f6;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruitment .top .t-nav .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.8rem;
  padding: 0.24rem 0;
}
.recruitment .top .t-nav .name.on {
  padding-bottom: 0.22rem;
  border-bottom: 2px solid #d71921;
  color: #d71921;
}
.recruitment .top .t-nav .name:last-child {
  margin-right: 0;
}
.recruitment .content {
  padding: 1.2rem 0 1.44rem 0;
}
.recruitment .content .wal .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruitment .content .wal .header .title {
  padding-bottom: 0.28rem;
}
.recruitment .content .wal .header .title h1 {
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
}
.recruitment .content .wal .header .search {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .recruitment .content .wal .header .search {
    width: 100%;
  }
}
.recruitment .content .wal .header .search input {
  width: 6.88rem;
  height: 0.56rem;
  border: 1px solid #D9D9D9;
  padding: 0.16rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .recruitment .content .wal .header .search input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #D9D9D9;
    padding: 16px 40px;
    height: 56px;
    font-size: 14px;
    line-height: 24px;
  }
}
.recruitment .content .wal .header .search .search-line {
  position: absolute;
  right: 0.16rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .recruitment .content .wal .header .search .search-line {
    left: 0;
    right: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.recruitment .content .wal .header .search .search-line img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .recruitment .content .wal .header .search .search-line img {
    width: 24px;
    height: 24px;
  }
}
.recruitment .content .wal .header .search .search-clone {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.recruitment .content .wal .header .search .search-clone.show {
  display: block;
}
.recruitment .content .wal .header .search .search-clone img {
  width: 24px;
  height: 24px;
}
.recruitment .content .wal .main {
  margin-top: 0.32rem;
  border-top: 1px solid #e6e6e6;
}
.recruitment .content .wal .main .list .item {
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #e6e6e6;
}
.recruitment .content .wal .main .list .item a.g-text-hover {
  --color: rgba(215, 25, 33, 1);
}
.recruitment .content .wal .main .list .item a:hover .left .top {
  color: #d71921;
}
.recruitment .content .wal .main .list .item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recruitment .content .wal .main .list .item a .left .top {
  font-size: 0.2rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  font-family: "fontFamily-B";
}
.recruitment .content .wal .main .list .item a .left .bottom ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.recruitment .content .wal .main .list .item a .left .bottom ul li {
  font-size: 0.16rem;
  color: #767676;
  line-height: 0.24rem;
  padding: 0 0.16rem 0;
  margin-top: 0.08rem;
  position: relative;
}
.recruitment .content .wal .main .list .item a .left .bottom ul li::after {
  content: /static/pages/css/"";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  height: 0.16rem;
  width: 0.01rem;
  background: #cccccc;
}
.recruitment .content .wal .main .list .item a .left .bottom ul li:nth-child(1) {
  padding-left: 0;
}
.recruitment .content .wal .main .list .item a .left .bottom ul li:last-child::after {
  content: /static/pages/css/"";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  height: 0;
  width: 0;
  background: #cccccc;
}
.recruitment .content .wal .main .list .item a .right {
  font-size: 0.16rem;
  color: #a6a6a6;
  line-height: 0.24rem;
}
.recruitment .content .wal .re_footer {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.64rem;
}

.recruitmentDetails .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
.recruitmentDetails .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.recruitmentDetails .content {
  margin-top: 0.32rem;
}
.recruitmentDetails .content .header {
  padding: 0.32rem 0;
  background: #f8f8f8;
  position: relative;
}
.recruitmentDetails .content .header .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recruitmentDetails .content .header .wal .title h1 {
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
}
.recruitmentDetails .content .header .wal .title .bottom ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.recruitmentDetails .content .header .wal .title .bottom ul li {
  font-size: 0.16rem;
  color: #767676;
  line-height: 0.24rem;
  padding: 0 0.16rem 0;
  margin-top: 0.16rem;
  position: relative;
}
.recruitmentDetails .content .header .wal .title .bottom ul li::after {
  content: /static/pages/css/"";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  height: 0.16rem;
  width: 0.01rem;
  background: #cccccc;
}
.recruitmentDetails .content .header .wal .title .bottom ul li:nth-child(1) {
  padding-left: 0;
}
.recruitmentDetails .content .header .wal .title .bottom ul li:last-child::after {
  content: /static/pages/css/"";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  height: 0;
  width: 0;
  background: #cccccc;
}
.recruitmentDetails .content .header .right {
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  padding: 0.48rem 0 0.56rem 0.32rem;
  background: #d71921;
}
.recruitmentDetails .content .header .right div {
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.24rem;
}
.recruitmentDetails .content .main {
  padding: 0.64rem 0 1.6rem 0;
}
.recruitmentDetails .content .main .title {
  font-size: 0.24rem;
  color: #1e1e1e;
  line-height: 0.32rem;
  font-family: "fontFamily-B";
}
.recruitmentDetails .content .main ul {
  margin-top: 0.16rem;
}
.recruitmentDetails .content .main ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.16rem;
  color: #767676;
  line-height: 0.24rem;
}

.talentConcept .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
.talentConcept .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.talentConcept .top .t-nav {
  height: 0.72rem;
  background: #f6f6f6;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.talentConcept .top .t-nav .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.8rem;
  padding: 0.24rem 0;
}
.talentConcept .top .t-nav .name.on {
  padding-bottom: 0.22rem;
  border-bottom: 2px solid #d71921;
  color: #d71921;
}
.talentConcept .top .t-nav .name:last-child {
  margin-right: 0;
}
.talentConcept .content .wal {
  padding: 0.64rem 0 0.8rem 0;
}
.talentConcept .content .wal .listBox:nth-child(1n) {
  padding-top: 31.25%;
  position: relative;
  margin-bottom: 0.8rem;
}
.talentConcept .content .wal .listBox:nth-child(1n) .icon {
  position: absolute;
  width: 0.4rem;
  height: 0.32rem;
  top: 0;
  left: 0;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/talent_icon_1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
}
.talentConcept .content .wal .listBox:nth-child(1n) .left {
  position: absolute;
  width: 40.34%;
  padding: 4% 0 4% 4%;
  left: 0;
  bottom: 0.32rem;
  background: #d71921;
  z-index: 10;
  font-size: 0.4rem;
  color: #ffffff;
  line-height: 0.48rem;
}
.talentConcept .content .wal .listBox:nth-child(1n) .left::after {
  content: /static/pages/css/"";
  position: absolute;
  width: 0.08rem;
  height: 0.96rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f6f6f6;
}
.talentConcept .content .wal .listBox:nth-child(1n) .right {
  position: absolute;
  width: 65.9%;
  right: 0;
  top: 0;
}
.talentConcept .content .wal .listBox:nth-child(1n) .right .bigimg {
  width: 100%;
  padding-top: 47.41%;
  position: relative;
}
.talentConcept .content .wal .listBox:nth-child(1n) .right .bigimg img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.talentConcept .content .wal .listBox:nth-child(2n) {
  padding-top: 31.25%;
  position: relative;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.talentConcept .content .wal .listBox:nth-child(2n) .icon {
  position: absolute;
  width: 0.4rem;
  height: 0.32rem;
  top: 0;
  right: 0;
  left: auto;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/talent_icon_2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
}
.talentConcept .content .wal .listBox:nth-child(2n) .left {
  position: absolute;
  width: 40.34%;
  padding: 4% 0 4% 4%;
  right: 0;
  left: auto;
  bottom: 0.32rem;
  background: #f7f8fa;
  z-index: 10;
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
}
.talentConcept .content .wal .listBox:nth-child(2n) .left::after {
  content: /static/pages/css/"";
  position: absolute;
  width: 0.08rem;
  height: 0.96rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #d71921;
}
.talentConcept .content .wal .listBox:nth-child(2n) .right {
  position: absolute;
  width: 65.9%;
  left: 0;
  top: 0;
}
.talentConcept .content .wal .listBox:nth-child(2n) .right .bigimg {
  width: 100%;
  padding-top: 47.41%;
  position: relative;
}
.talentConcept .content .wal .listBox:nth-child(2n) .right .bigimg img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.talentConcept .content .wal .listBox:nth-child(3n) {
  padding-top: 31.25%;
  position: relative;
  margin-bottom: 0.8rem;
}
.talentConcept .content .wal .listBox:nth-child(3n) .icon {
  position: absolute;
  width: 0.4rem;
  height: 0.32rem;
  top: 0;
  left: 0;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/talent_icon_3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
}
.talentConcept .content .wal .listBox:nth-child(3n) .left {
  position: absolute;
  width: 40.34%;
  padding: 4% 0 4% 4%;
  left: 0;
  bottom: 0.32rem;
  background: #1e1e1e;
  z-index: 10;
  font-size: 0.4rem;
  color: #ffffff;
  line-height: 0.48rem;
}
.talentConcept .content .wal .listBox:nth-child(3n) .left::after {
  content: /static/pages/css/"";
  position: absolute;
  width: 0.08rem;
  height: 0.96rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f6f6f6;
}
.talentConcept .content .wal .listBox:nth-child(3n) .right {
  position: absolute;
  width: 65.9%;
  right: 0;
  top: 0;
}
.talentConcept .content .wal .listBox:nth-child(3n) .right .bigimg {
  width: 100%;
  padding-top: 47.41%;
  position: relative;
}
.talentConcept .content .wal .listBox:nth-child(3n) .right .bigimg img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.employeeStyle .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
.employeeStyle .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.employeeStyle .top .t-nav {
  height: 0.72rem;
  background: #f6f6f6;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.employeeStyle .top .t-nav .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.8rem;
  padding: 0.24rem 0;
}
.employeeStyle .top .t-nav .name.on {
  padding-bottom: 0.22rem;
  border-bottom: 2px solid #d71921;
  color: #d71921;
}
.employeeStyle .top .t-nav .name:last-child {
  margin-right: 0;
}
.employeeStyle .content .wal {
  padding: 0.64rem 0 1.6rem 0;
}
.employeeStyle .content .wal .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (min-width: 800px) {
  .employeeStyle .content .wal .list ul li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .employeeStyle .content .wal .list ul li:nth-child(3n) {
    margin-right: 0;
  }
  .employeeStyle .content .wal .list ul li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .employeeStyle .content .wal .list ul li {
    width: calc((100% - ((1 - 1) * 10px)) / 1);
    margin-right: 10px;
    margin-top: 10px;
  }
  .employeeStyle .content .wal .list ul li:nth-child(1n) {
    margin-right: 0;
  }
  .employeeStyle .content .wal .list ul li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.employeeStyle .content .wal .list ul li .zoom_img {
  width: 100%;
  position: relative;
  padding-top: 80.35%;
}
.employeeStyle .content .wal .list ul li .zoom_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.employeeStyle .content .wal .list ul li .text {
  padding: 0.32rem 0 0.32rem 0.24rem;
  background: #f7f8fa;
  font-size: 0.2rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
}
.employeeStyle .content .wal .list ul li .text::after {
  content: /static/pages/css/"";
  position: absolute;
  width: 2px;
  height: 0.24rem;
  background: #d71921;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.employeeStyle .content .wal .em_footer {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.64rem;
}

.socialResponsibility .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .socialResponsibility .top .banner {
    padding-top: 128%;
  }
}
.socialResponsibility .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.socialResponsibility .top .t-nav {
  height: 0.72rem;
  background: #f7f8fa;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.socialResponsibility .top .t-nav .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.8rem;
  padding: 0.24rem 0;
}
.socialResponsibility .top .t-nav .name.on {
  padding-bottom: 0.22rem;
  border-bottom: 2px solid #d71921;
}
.socialResponsibility .top .t-nav .name:last-child {
  margin-right: 0;
}
.socialResponsibility .con-main .wal {
  padding: 0.64rem 0 1.6rem 0;
}
.socialResponsibility .con-main .wal .policy {
  position: relative;
}
.socialResponsibility .con-main .wal .policy .title {
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
  padding-bottom: 0.2rem;
}
.socialResponsibility .con-main .wal .policy .desc {
  width: 63.1%;
  margin-top: 0.4rem;
  background: #f7f8fa;
  padding: 0.64rem 1.44rem 1.2rem 0.8rem;
  -webkit-transform: translate(-0.8rem, 0);
      -ms-transform: translate(-0.8rem, 0);
          transform: translate(-0.8rem, 0);
}
.socialResponsibility .con-main .wal .policy .desc p {
  color: #1e1e1e;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.socialResponsibility .con-main .wal .policy .desc .li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.socialResponsibility .con-main .wal .policy .desc .li .index {
  color: #1e1e1e;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.socialResponsibility .con-main .wal .policy .desc .li p {
  margin-bottom: 0.08rem;
}
.socialResponsibility .con-main .wal .policy .desc .lin {
  text-decoration: underline;
}
.socialResponsibility .con-main .wal .policy .desc .op {
  color: #767676;
}
.socialResponsibility .con-main .wal .policy .desc ._bottom {
  margin-bottom: 0.4rem;
}
.socialResponsibility .con-main .wal .policy .right {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
}
.socialResponsibility .con-main .wal .policy .right .img {
  width: 100%;
  position: relative;
  padding-top: 87.2%;
}
.socialResponsibility .con-main .wal .policy .right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.socialResponsibility .con-main .wal .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 1.2rem;
}
@media screen and (min-width: 800px) {
  .socialResponsibility .con-main .wal .list li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .socialResponsibility .con-main .wal .list li:nth-child(3n) {
    margin-right: 0;
  }
  .socialResponsibility .con-main .wal .list li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .socialResponsibility .con-main .wal .list li {
    width: calc((100% - ((1 - 1) * 10px)) / 1);
    margin-right: 10px;
    margin-top: 10px;
  }
  .socialResponsibility .con-main .wal .list li:nth-child(1n) {
    margin-right: 0;
  }
  .socialResponsibility .con-main .wal .list li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.socialResponsibility .con-main .wal .list li .zoom_img {
  width: 100%;
}
.socialResponsibility .con-main .wal .list li .zoom_img img {
  width: 100%;
  object-fit: contain;
}
.socialResponsibility .con-main .wal .list li .text {
  padding: 0.32rem 0 0.32rem 0.24rem;
  background: #f7f8fa;
  font-size: 0.2rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
}
.socialResponsibility .con-main .wal .list li .text::after {
  content: /static/pages/css/"";
  position: absolute;
  width: 2px;
  height: 0.24rem;
  background: #d71921;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.socialResponsibility .con-main .wal .em_footer {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.64rem;
}

.service .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
.service .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.service .top .t-nav {
  height: 0.72rem;
  background: #f6f6f6;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service .top .t-nav .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.8rem;
  padding: 0.24rem 0;
}
.service .top .t-nav .name.on {
  padding-bottom: 0.22rem;
  border-bottom: 2px solid #d71921;
  color: #d71921;
}
.service .top .t-nav .name:last-child {
  margin-right: 0;
}
.service .content .wal {
  padding: 0.64rem 0 1.6rem 0;
}
.service .content .wal .first:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.service .content .wal .first {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.service .content .wal .first .left {
  width: 50%;
}
.service .content .wal .first .left .bigimg {
  width: 100%;
  position: relative;
  padding-top: 62.5%;
}
.service .content .wal .first .left .bigimg img {
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.service .content .wal .first .right {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #f7f8fa;
}
.service .content .wal .first .right .index {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.12rem;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1.2rem;
  font-family: "fontFamily-Num";
}
.service .content .wal .first .right .text {
  max-width: 4.48rem;
}
.service .content .wal .first .right .text .title {
  font-size: 0.24rem;
  color: #1e1e1e;
  line-height: 0.32rem;
  margin-bottom: 0.16rem;
  font-family: "fontFamily-B";
}
.service .content .wal .first .right .text .content {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
}

.solution .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
.solution .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.solution .top .t-nav {
  height: 0.72rem;
  background: #f6f6f6;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.solution .top .t-nav .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.8rem;
  padding: 0.24rem 0;
}
.solution .top .t-nav .name.on {
  padding-bottom: 0.22rem;
  border-bottom: 2px solid #d71921;
  color: #d71921;
}
.solution .top .t-nav .name:last-child {
  margin-right: 0;
}
.solution .content {
  padding: 0.64rem 0 0 0;
}
.solution .content .first {
  padding-bottom: 1.6rem;
}
.solution .content .first .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.solution .content .first .header .left {
  width: 65.9%;
}
.solution .content .first .header .left .title {
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
  padding-bottom: 0.2rem;
}
.solution .content .first .header .left .text {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  margin-top: 0.32rem;
}
.solution .content .first .header .right:hover {
  opacity: 0.8;
}
.solution .content .first .header .right {
  width: 14.77%;
  background: #d71921;
  height: 0.56rem;
  padding-left: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
}
.solution .content .first .header .right a {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 0.16rem;
}
.solution .content .first .header .right a .txt {
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.24rem;
}
.solution .content .first .header .right a .icon {
  width: 0.24rem;
  height: 0.24rem;
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/solution_icon_2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution .content .first .list {
  margin-top: 0.64rem;
}
.solution .content .first .list .pc_ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.solution .content .first .list .pc_ul li {
  padding: 0.32rem;
  background: #f7f8fa;
}
@media screen and (min-width: 800px) {
  .solution .content .first .list .pc_ul li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .solution .content .first .list .pc_ul li:nth-child(3n) {
    margin-right: 0;
  }
  .solution .content .first .list .pc_ul li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .solution .content .first .list .pc_ul li {
    width: calc((100% - ((1 - 1) * 10px)) / 1);
    margin-right: 10px;
    margin-top: 10px;
  }
  .solution .content .first .list .pc_ul li:nth-child(1n) {
    margin-right: 0;
  }
  .solution .content .first .list .pc_ul li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.solution .content .first .list .pc_ul li .index {
  width: 0.56rem;
  height: 0.56rem;
  font-size: 0.24rem;
  color: #1e1e1e;
  line-height: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "fontFamily-Num";
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/solution_icon_3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
}
.solution .content .first .list .pc_ul li .title {
  margin-top: 0.64rem;
  font-size: 0.24rem;
  color: #1e1e1e;
  line-height: 0.32rem;
  font-family: "fontFamily-B";
}
.solution .content .first .list .pc_ul li .desc {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
}
.solution .content .second {
  background: #f7f8fa;
}
.solution .content .second .wal {
  padding: 1.2rem 0 1.6rem 0;
}
.solution .content .second .wal .title {
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
  padding-bottom: 0.28rem;
}
.solution .content .second .wal .list {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.solution .content .second .wal .list li:hover .zoom_img {
  overflow: hidden;
}
.solution .content .second .wal .list li:hover .zoom_img img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.solution .content .second .wal .list li {
  background: #ffffff;
  padding: 0.4rem 0.32rem 0.24rem 0.32rem;
}
@media screen and (min-width: 800px) {
  .solution .content .second .wal .list li {
    width: calc((100% - ((4 - 1) * 0.32rem)) / 4);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .solution .content .second .wal .list li:nth-child(4n) {
    margin-right: 0;
  }
  .solution .content .second .wal .list li:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .solution .content .second .wal .list li {
    width: calc((100% - ((1 - 1) * 10px)) / 1);
    margin-right: 10px;
    margin-top: 10px;
  }
  .solution .content .second .wal .list li:nth-child(1n) {
    margin-right: 0;
  }
  .solution .content .second .wal .list li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.solution .content .second .wal .list li .zoom_img {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.solution .content .second .wal .list li .zoom_img img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.solution .content .second .wal .list li .content_item {
  margin-top: 0.4rem;
}
.solution .content .second .wal .list li .content_item .title {
  font-size: 0.2rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  padding-bottom: 0.08rem;
  font-family: "fontFamily-B";
}
.solution .content .second .wal .list li .content_item .desc {
  font-size: 0.16rem;
  color: #767676;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.solution .content .second .wal .list li .more_txt {
  width: 0.88rem;
  margin-top: 0.24rem;
  font-size: 0.16rem;
  color: #d71921;
  line-height: 0.24rem;
  position: relative;
}
.solution .content .second .wal .list li .more_txt:after {
  width: 0.24rem;
  height: 0.24rem;
  content: /static/pages/css/"";
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/solution_icon_4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.solution .content .third .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.2rem 0 1.6rem 0;
}
.solution .content .third .wal .left {
  max-width: 50%;
  padding-bottom: 1.84rem;
}
.solution .content .third .wal .left .title {
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
  padding-bottom: 0.28rem;
}
.solution .content .third .wal .left .fu_title {
  margin-top: 0.32rem;
  font-size: 0.24rem;
  color: #1e1e1e;
  line-height: 0.32rem;
  font-family: "fontFamily-B";
}
.solution .content .third .wal .left .more_bt:hover {
  opacity: 0.8;
}
.solution .content .third .wal .left .more_bt {
  margin-top: 0.24rem;
}
.solution .content .third .wal .right {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.solution .content .third .wal .right .bg_img {
  position: absolute;
  width: 6.88rem;
  object-fit: contain;
  top: -0.32rem;
  right: 0;
}
.solution .content .third .wal .right .bg_img .bigimg {
  width: 100%;
  position: relative;
  padding-top: 65.11%;
}
.solution .content .third .wal .right .bg_img .bigimg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.solution .content .third .wal .right .zoom_img {
  position: absolute;
  width: 7.04rem;
  top: 0;
  right: 0.32rem;
}
.solution .content .third .wal .right .zoom_img .bigimg {
  width: 100%;
  position: relative;
  padding-top: 62.5%;
}
.solution .content .third .wal .right .zoom_img .bigimg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.solution .content .fourth {
  position: relative;
}
.solution .content .fourth .wal {
  height: 3.28rem;
}
.solution .content .fourth .wal .left {
  max-width: 50%;
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
  padding: 0.96rem 0;
}
.solution .content .fourth .wal .left .more_bt:hover {
  opacity: 0.8;
}
.solution .content .fourth .wal .left .more_bt {
  width: 2.08rem;
  margin-top: 0.32rem;
  padding: 0.16rem 0.16rem 0.16rem 0.24rem;
  background: #d71921;
  -webkit-clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
}
.solution .content .fourth .wal .left .more_bt a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.24rem;
  position: relative;
}
.solution .content .fourth .wal .left .more_bt a:after {
  width: 0.24rem;
  height: 0.24rem;
  content: /static/pages/css/"";
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/solution_icon_2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.solution .content .fourth .wal .right {
  height: 100%;
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0%;
}
.solution .content .fourth .wal .right img {
  height: 100%;
  object-fit: cover;
}

.downloadCenter .top .banner {
  width: 100%;
  padding-top: 37.5%;
  position: relative;
}
.downloadCenter .top .banner .b-g-i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.downloadCenter .top .t-nav {
  height: 0.72rem;
  background: #f6f6f6;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.downloadCenter .top .t-nav .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.8rem;
  padding: 0.24rem 0;
}
.downloadCenter .top .t-nav .name.on {
  padding-bottom: 0.22rem;
  border-bottom: 2px solid #d71921;
  color: #d71921;
}
.downloadCenter .top .t-nav .name:last-child {
  margin-right: 0;
}
.downloadCenter .dl_content {
  padding: 0.64rem 0 1.6rem 0;
}
.downloadCenter .dl_content .dl_header {
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
  padding-bottom: 0.2rem;
}
.downloadCenter .dl_content .dl_main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.64rem;
}
.downloadCenter .dl_content .dl_main .menu {
  width: 2.4rem;
  margin-right: 1.2rem;
  border-top: 1px solid #e6e6e6;
}
.downloadCenter .dl_content .dl_main .menu .menu_item {
  padding: 0.24rem 0.32rem 0.24rem 0.32rem;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 800px) {
  .downloadCenter .dl_content .dl_main .menu .menu_item.on .menu_icon .menu_img:nth-child(1) {
    display: block;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item.on .menu_icon .menu_img:nth-child(2) {
    display: none;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item.on .menu_item_content {
    display: block;
  }
}
.downloadCenter .dl_content .dl_main .menu .menu_item .menu_icon {
  width: 0.24rem;
  height: 0.24rem;
  position: absolute;
  left: 0;
  top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.downloadCenter .dl_content .dl_main .menu .menu_item .menu_icon .menu_img {
  display: none;
  width: 100%;
  object-fit: contain;
}
.downloadCenter .dl_content .dl_main .menu .menu_item .menu_icon .menu_img:nth-child(2) {
  display: block;
}
.downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_title {
  font-size: 0.2rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  cursor: pointer;
}
.downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_content {
  display: none;
  margin-top: 0.24rem;
}
.downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_content li {
  cursor: pointer;
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  margin-bottom: 0.16rem;
}
.downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_content li:hover {
  color: #d71921;
}
.downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_content li.red {
  color: #d71921;
}
.downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_content li:last-child {
  margin-bottom: 0;
}
.downloadCenter .dl_content .dl_main .list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top: 1px solid #e6e6e6;
}
.downloadCenter .dl_content .dl_main .list .table table {
  width: 100%;
  font-size: 0.16rem;
}
.downloadCenter .dl_content .dl_main .list .table table tr {
  height: 0.88rem;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}
.downloadCenter .dl_content .dl_main .list .table table tr td:nth-child(1) {
  width: 0.4rem;
  height: 0.4rem;
}
.downloadCenter .dl_content .dl_main .list .table table tr td:nth-child(1) .pdf {
  width: 100%;
  object-fit: contain;
}
.downloadCenter .dl_content .dl_main .list .table table tr td:nth-child(2) {
  padding-left: 0.24rem;
}
.downloadCenter .dl_content .dl_main .list .table table tr td:nth-child(3) {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-align: right;
}
.downloadCenter .dl_content .dl_main .list .table table tr td:nth-child(4) {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-align: right;
  margin-right: 0.3rem;
}
.downloadCenter .dl_content .dl_main .list .table table tr td:nth-child(5) {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-align: right;
  margin-right: 0.7rem;
}
.downloadCenter .dl_content .dl_main .list .table table tr td:nth-child(6) {
  width: 1.77rem;
  text-align: right;
  padding-right: 0.32rem;
}
.downloadCenter .dl_content .dl_main .list .table table tr td a img {
  width: 0.24rem;
  height: 0.24rem;
}
.downloadCenter .dl_content .dl_main .list .table table tr td a span {
  display: inline-block;
  line-height: 0.24rem;
}
.downloadCenter .dl_content .dl_main .list .pagination-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.64rem;
}
.downloadCenter .dl_content .dl_main .list .to-ul {
  margin: 32px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.productDetails .top .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.72rem 0 0.8rem 0;
}
.productDetails .top .wal .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 1.52rem;
  height: 4.88rem;
}
.productDetails .top .wal .left .bigImg {
  width: 4.88rem;
  padding: 0.4rem;
  background: #ffffff;
  margin-right: 0.32rem;
  border: 1px solid #e6e6e6;
  position: relative;
}
.productDetails .top .wal .left .bigImg .mySwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.productDetails .top .wal .left .bigImg .mySwiper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.productDetails .top .wal .left .bigImg .mySwiper img {
  width: 100%;
  object-fit: contain;
}
.productDetails .top .wal .left .bigImg .mySwiper .swiper-button-prev {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/produnct_left.png);
}
.productDetails .top .wal .left .bigImg .mySwiper .swiper-button-next {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/prudoct_right.png);
}
.productDetails .top .wal .left .list {
  width: 0.88rem;
  height: 4.88rem;
  overflow: hidden;
}
.productDetails .top .wal .left .list .mySwiper2 {
  width: 100%;
  height: 4.88rem;
  position: relative;
}
.productDetails .top .wal .left .list .mySwiper2 .active {
  border: 1px solid #d71921;
}
.productDetails .top .wal .left .list .mySwiper2 .swiper-slide {
  width: 0.88rem;
  height: 0.88rem;
}
.productDetails .top .wal .left .list .mySwiper2 .swiper-slide img {
  width: 100%;
  object-fit: contain;
}
.productDetails .top .wal .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.productDetails .top .wal .right .title {
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
}
.productDetails .top .wal .right .desc {
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  margin: 0.32rem 0 0.64rem;
}
.productDetails .top .wal .right .g-btn a {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
  margin-top: 0;
  border: none;
}
.productDetails .top .wal .right .g-btn a .btn-text {
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.24rem;
}
.productDetails .top .wal .right .g-btn a::after {
  width: 0.24rem;
  height: 0.24rem;
}
.productDetails .productDetails_bt.g-btn.transparent a:hover {
  background-color: transparent;
  opacity: 0.8;
}
.productDetails .details .wal .navigation {
  width: 100%;
  background: #f7f8fa;
  border-bottom: 2px solid #d71921;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  z-index: 9;
}
.productDetails .details .wal .navigation .nav_item {
  padding: 0.16rem 0.58rem 0.16rem 0.54rem;
  font-size: 0.16rem;
  color: #1e1e1e;
  line-height: 0.24rem;
}
.productDetails .details .wal .navigation .nav_item.hover {
  background: #d71921;
}
.productDetails .details .wal .navigation .nav_item.hover {
  font-weight: 600;
  color: #ffffff;
}
.productDetails .details .wal .characteristic .title {
  margin-top: 0.8rem;
  padding-bottom: 0.28rem;
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
}
.productDetails .details .wal .characteristic .cha_box {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.productDetails .details .wal .characteristic .cha_box .color_box:nth-child(odd) {
  margin-right: 0.32rem;
}
.productDetails .details .wal .characteristic .cha_box .color_box {
  background: #F7F8FA;
  width: calc((100% - 0.32rem) / 2);
  margin-bottom: 0.16rem;
}
.productDetails .details .wal .characteristic .cha_box .cha_item {
  background: #f7f8fa;
  padding: 0.32rem;
  padding-left: 0.8rem;
  position: relative;
  font-family: "fontFamily-B";
  font-size: 0.24rem;
  line-height: 0.32rem;
  background-image: -webkit-linear-gradient(50deg, #d71921 0%, #1e1e1e 100%);
  background-image: linear-gradient(40deg, #d71921 0%, #1e1e1e 100%);
  /* 设置线性渐变背景 */
  -webkit-background-clip: text;
  /* 背景裁剪到文本 */
  color: transparent;
  /* 文本颜色设置为透明 */
  -webkit-text-fill-color: transparent;
  /* 文本填充颜色设置为透明 */
}
.productDetails .details .wal .characteristic .cha_box .cha_item::after {
  content: /static/pages/css/"";
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/pro_icon_1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  left: 0.32rem;
  top: 0.32rem;
}
.productDetails .details .wal .parameter .title {
  margin-top: 1.04rem;
  padding-bottom: 0.28rem;
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
}
.productDetails .details .wal .parameter .par_content {
  margin-top: 0.42rem;
  border-bottom: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.productDetails .details .wal .parameter .par_content table {
  width: 100%;
}
.productDetails .details .wal .parameter .par_content table tr:first-child .left {
  border-top: 2px solid #d71921;
}
.productDetails .details .wal .parameter .par_content table tr:first-child .right {
  border-top: 2px solid #1e1e1e;
}
.productDetails .details .wal .parameter .par_content table tr td {
  font-size: 0.16rem;
  color: #1E1E1E;
  line-height: 0.24rem;
}
.productDetails .details .wal .parameter .par_content table tr:nth-child(2n) .left {
  background: #F8F8F8;
}
.productDetails .details .wal .parameter .par_content table tr:nth-child(2n) .right {
  background: #F8F8F8;
}
.productDetails .details .wal .parameter .par_content table .left-gap {
  background-color: transparent;
  width: 0.32rem;
}
.productDetails .details .wal .parameter .par_content table .left {
  width: 31.81%;
  padding: 0.16rem;
}
.productDetails .details .wal .parameter .par_content table .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.16rem;
}
.productDetails .details .wal .down .title {
  margin-top: 1.2rem;
  padding-bottom: 0.28rem;
  font-family: "fontFamily-B";
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
}
.productDetails .details .wal .down .g-btn {
  margin-top: 0.32rem;
  margin-bottom: 0.32rem;
}
.productDetails .details .wal .down .g-btn a {
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
  margin-top: 0;
  border: none;
  -webkit-clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
}
.productDetails .details .wal .down .g-btn a .btn-text {
  width: 100%;
  text-align: center;
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.24rem;
}
.productDetails .details .wal .down .g-btn a::after {
  width: 0;
  height: 0;
}
.productDetails .details .wal .down .table {
  margin-bottom: 1.6rem;
}
.productDetails .details .wal .down .table table {
  width: 100%;
  font-size: 0.16rem;
}
.productDetails .details .wal .down .table table tr {
  width: 100%;
  height: 0.88rem;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}
.productDetails .details .wal .down .table table tr:first-child {
  border-top: 1px solid #e6e6e6;
}
.productDetails .details .wal .down .table table tr td {
  white-space: nowrap;
  /* 防止内容换行 */
  overflow: hidden;
  /* 隐藏超出部分 */
  text-overflow: ellipsis;
  /* 超出部分显示省略号 */
  height: 0.88rem;
}
.productDetails .details .wal .down .table table tr td:nth-child(1) {
  width: 0.4rem;
  height: 0.4rem;
}
.productDetails .details .wal .down .table table tr td:nth-child(1) .pdf {
  width: 100%;
  object-fit: contain;
}
.productDetails .details .wal .down .table table tr td:nth-child(2) {
  width: auto;
  padding-left: 0.24rem;
  padding-right: 0.32rem;
}
.productDetails .details .wal .down .table table tr td:nth-child(3) {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-align: right;
}
.productDetails .details .wal .down .table table tr td:nth-child(4) {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-align: right;
  padding-right: 0.32rem;
}
.productDetails .details .wal .down .table table tr td:nth-child(5) {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-align: right;
  padding-right: 0.32rem;
}
.productDetails .details .wal .down .table table tr td:nth-child(6) {
  width: 1.77rem;
  text-align: right;
  padding-right: 0.32rem;
}
.productDetails .details .wal .down .table table tr td a img {
  width: 0.24rem;
  height: 0.24rem;
}
.productDetails .details .wal .down .table table tr td a span {
  display: inline-block;
  line-height: 0.24rem;
}
.productDetails .products {
  background: #f7f8fa;
}
.productDetails .products .wal {
  padding: 1.2rem 0 1.6rem 0;
}
.productDetails .products .wal .title {
  font-size: 0.4rem;
  color: #1e1e1e;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
  padding-bottom: 0.28rem;
}
.productDetails .products .wal .list {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.productDetails .products .wal .list li {
  background: #ffffff;
  padding: 0.4rem 0.32rem 0.24rem 0.32rem;
}
@media screen and (min-width: 800px) {
  .productDetails .products .wal .list li {
    width: calc((100% - ((4 - 1) * 0.32rem)) / 4);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .productDetails .products .wal .list li:nth-child(4n) {
    margin-right: 0;
  }
  .productDetails .products .wal .list li:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .productDetails .products .wal .list li {
    width: calc((100% - ((1 - 1) * 10px)) / 1);
    margin-right: 10px;
    margin-top: 10px;
  }
  .productDetails .products .wal .list li:nth-child(1n) {
    margin-right: 0;
  }
  .productDetails .products .wal .list li:nth-child(-n+1) {
    margin-top: 0;
  }
}
.productDetails .products .wal .list li .zoom_img {
  width: 100%;
  position: relative;
  padding-top: 100%;
}
.productDetails .products .wal .list li .zoom_img img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.productDetails .products .wal .list li .content_item {
  margin-top: 0.4rem;
}
.productDetails .products .wal .list li .content_item .title {
  font-size: 0.2rem;
  color: #1e1e1e;
  line-height: 0.24rem;
  padding-bottom: 0.08rem;
  font-family: "fontFamily-B";
}
.productDetails .products .wal .list li .content_item .desc {
  font-size: 0.16rem;
  color: #767676;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.productDetails .products .wal .list li .more_txt {
  width: 0.88rem;
  margin-top: 0.24rem;
  font-size: 0.16rem;
  color: #d71921;
  line-height: 0.24rem;
  position: relative;
}
.productDetails .products .wal .list li .more_txt:after {
  width: 0.24rem;
  height: 0.24rem;
  content: /static/pages/css/"";
  background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/solution_icon_4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: "transparent";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 800px) {
  .title_bm {
    position: relative;
  }
  .title_bm::after {
    content: /static/pages/css/"";
    position: absolute;
    width: 24px;
    height: 4px;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    background: #d71921;
  }

  .coreCompetencies .title_bm {
    position: relative;
  }
  .coreCompetencies .title_bm::after {
    content: /static/pages/css/"";
    position: absolute;
    width: 24px;
    height: 4px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #d71921;
  }

  .productDetails .top .wal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px 16px 64px;
  }
  .productDetails .top .wal .left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
    height: 264px;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .productDetails .top .wal .left .bigImg {
    width: 264px;
    padding: 32px;
    background: #ffffff;
    margin-right: 16px;
    border: 1px solid #d9d9d9;
    position: relative;
  }
  .productDetails .top .wal .left .bigImg .mySwiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .productDetails .top .wal .left .bigImg .mySwiper .swiper-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .productDetails .top .wal .left .bigImg .mySwiper img {
    width: 100%;
    object-fit: contain;
  }
  .productDetails .top .wal .left .list {
    width: 64px;
    height: 264px;
    overflow: hidden;
  }
  .productDetails .top .wal .left .list .mySwiper2 {
    width: 100%;
    height: 264px;
    position: relative;
  }
  .productDetails .top .wal .left .list .mySwiper2 .swiper-slide {
    width: 64px;
    height: 64px;
  }
  .productDetails .top .wal .left .list .mySwiper2 .swiper-slide img {
    width: 100%;
    object-fit: contain;
  }
  .productDetails .top .wal .right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    margin-top: 32px;
  }
  .productDetails .top .wal .right .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
  }
  .productDetails .top .wal .right .desc {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    margin: 16px 0 32px;
  }
  .productDetails .top .wal .right .g-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .productDetails .top .wal .right .g-btn a.phone-show {
    background: #d71921;
    border: none;
  }
  .productDetails .top .wal .right .g-btn a.phone-show .btn-text {
    color: #ffffff;
  }
  .productDetails .top .wal .right .g-btn a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: url(/static/pages/css/"");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: /static/pages/css/"";
    margin-top: 0;
    border: 1px solid #d71921;
    width: calc((100% - 8px) / 2);
  }
  .productDetails .top .wal .right .g-btn a .btn-text {
    font-size: 14px;
    color: #d71921;
    line-height: 24px;
  }
  .productDetails .top .wal .right .g-btn a::after {
    display: none;
  }
  .productDetails .details .wal .navigation {
    width: 100%;
    background: #f7f8fa;
    border-bottom: 2px solid #d71921;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .productDetails .details .wal .navigation a {
    width: calc(100% / 3);
  }
  .productDetails .details .wal .navigation .nav_item {
    padding: 12px 15px;
    font-size: 14px;
    color: #1E1E1E;
    line-height: 24px;
  }
  .productDetails .details .wal .navigation .nav_item.hover {
    background: #d71921;
  }
  .productDetails .details .wal .navigation .nav_item.hover a {
    font-weight: 600;
    color: #ffffff;
  }
  .productDetails .details .wal .characteristic .title {
    margin-top: 32px;
    padding-bottom: 12px;
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
  }
  .productDetails .details .wal .characteristic .cha_box {
    margin-top: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
  }
  .productDetails .details .wal .characteristic .cha_box .cah_left {
    margin-right: 0;
  }
  .productDetails .details .wal .characteristic .cha_box .color_box {
    width: 100%;
    margin-bottom: 8px;
  }
  .productDetails .details .wal .characteristic .cha_box .cha_item {
    background: #f7f8fa;
    padding: 16px;
    padding-left: 56px;
    position: relative;
    font-family: "fontFamily-B";
    font-size: 16px;
    line-height: 24px;
    background-image: -webkit-linear-gradient(170deg, #1E1E1E 0%, #D71921 100%);
    background-image: linear-gradient(280deg, #1E1E1E 0%, #D71921 100%);
    /* 设置线性渐变背景 */
    -webkit-background-clip: text;
    /* 背景裁剪到文本 */
    color: transparent;
    /* 文本颜色设置为透明 */
    -webkit-text-fill-color: transparent;
  }
  .productDetails .details .wal .characteristic .cha_box .cha_item::after {
    content: /static/pages/css/"";
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/pro_icon_1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
    width: 24px;
    height: 24px;
    position: absolute;
    left: 16px;
    top: 16px;
  }
  .productDetails .details .wal .parameter .title {
    margin-top: 64px;
    padding-bottom: 12px;
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1E1E1E;
    line-height: 32px;
  }
  .productDetails .details .wal .parameter .par_content {
    margin-top: 18px;
    border-bottom: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .productDetails .details .wal .parameter .par_content table {
    width: 100%;
  }
  .productDetails .details .wal .parameter .par_content table tr:first-child .left {
    border-top: 2px solid #d71921;
  }
  .productDetails .details .wal .parameter .par_content table tr:first-child .right {
    border-top: 2px solid #1e1e1e;
  }
  .productDetails .details .wal .parameter .par_content table tr td {
    font-size: 12px;
    color: #1E1E1E;
    line-height: 24px;
  }
  .productDetails .details .wal .parameter .par_content table tr:nth-child(2n) .left {
    background: #FFFFFF;
  }
  .productDetails .details .wal .parameter .par_content table tr:nth-child(2n) .right {
    background: #FFFFFF;
  }
  .productDetails .details .wal .parameter .par_content table .left {
    width: 48.97%;
    padding: 8px 8px 8px 0;
    vertical-align: top;
    border-bottom: 1px solid #D9D9D9;
  }
  .productDetails .details .wal .parameter .par_content table .left-gap {
    background-color: transparent;
    width: 8px;
  }
  .productDetails .details .wal .parameter .par_content table .right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 8px 8px 8px 0;
    border-bottom: 1px solid #D9D9D9;
  }
  .productDetails .details .wal .down .title {
    margin-top: 64px;
    padding-bottom: 12px;
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1E1E1E;
    line-height: 32px;
  }
  .productDetails .details .wal .down .table {
    margin-bottom: 0;
  }
  .productDetails .details .wal .down .table.phone-show {
    margin-top: 16px;
    margin-bottom: 64px;
  }
  .productDetails .details .wal .down .table.phone-show .table-li {
    padding: 16px 0 0 0;
  }
  .productDetails .details .wal .down .table.phone-show .table-li:first-child {
    border-top: 1px solid #d9d9d9;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe .icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe .icon img {
    width: 100%;
    object-fit: contain;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe .content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe .content .title {
    margin-top: 0;
    padding: 0;
    font-family: "fontFamily-B";
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe .content .des {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    color: #767676;
    line-height: 24px;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe .content .des li {
    padding: 0 8px;
    position: relative;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe .content .des li:nth-child(1) {
    padding: 0 8px 0 0;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe .content .des li::after {
    content: /static/pages/css/"";
    width: 1px;
    height: 16px;
    position: absolute;
    top: 50%;
    background: #d9d9d9;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  .productDetails .details .wal .down .table.phone-show .table-li .li-fe .content .des li:last-child::after {
    width: 0;
  }
  .productDetails .products {
    background: #f7f8fa;
  }
  .productDetails .products .wal {
    padding: 32px 16px 64px;
  }
  .productDetails .products .wal .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1E1E1E;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .productDetails .products .wal .list {
    margin-top: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .productDetails .products .wal .list li {
    background: #ffffff;
    padding: 40px 16px 16px;
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  .productDetails .products .wal .list li {
    width: calc((100% - ((4 - 1) * 0.32rem)) / 4);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .productDetails .products .wal .list li:nth-child(4n) {
    margin-right: 0;
  }
  .productDetails .products .wal .list li:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .productDetails .products .wal .list li {
    width: calc((100% - ((1 - 1) * 16px)) / 1);
    margin-right: 16px;
    margin-top: 16px;
  }
  .productDetails .products .wal .list li:nth-child(1n) {
    margin-right: 0;
  }
  .productDetails .products .wal .list li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .productDetails .products .wal .list li .zoom_img {
    width: 100%;
    position: relative;
    padding-top: 100%;
  }
  .productDetails .products .wal .list li .zoom_img img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}
@media screen and (max-width: 800px) {
  .productDetails .products .wal .list li .content_item {
    margin-top: 40px;
  }
  .productDetails .products .wal .list li .content_item .title {
    font-family: "fontFamily-B";
    font-size: 16px;
    color: #1E1E1E;
    line-height: 24px;
  }
  .productDetails .products .wal .list li .content_item .desc {
    font-size: 14px;
    color: #767676;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 800px) {
  .productDetails .products .wal .list li .more_txt {
    width: 80px;
    margin-top: 16px;
    font-size: 14px;
    color: #D71921;
    line-height: 24px;
    position: relative;
  }
  .productDetails .products .wal .list li .more_txt:after {
    width: 24px;
    height: 24px;
    content: /static/pages/css/"";
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/solution_icon_4.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 800px) {
  .productDetails .floor-help {
    padding: 32px 0 64px;
  }
}
@media screen and (max-width: 800px) {
  .newsDetail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .newsDetail .newsDetail_top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 16px 64px 16px;
  }
  .newsDetail .newsDetail_left {
    width: 100%;
  }
  .newsDetail .newsDetail_left .article_head {
    width: 100%;
    font-style: normal;
    text-transform: none;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e6e6e6;
  }
  .newsDetail .newsDetail_left .article_head .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 16px;
  }
  .newsDetail .newsDetail_left .article_head .time {
    font-size: 14px;
    color: #767676;
    line-height: 24px;
  }
  .newsDetail .newsDetail_left .article_content {
    padding-top: 32px;
    padding-bottom: 0;
    border-bottom: 1px solid #e6e6e6;
  }
  .newsDetail .newsDetail_left .article_content p {
    padding: 0 0 32px 0;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    font-style: normal;
    text-transform: none;
  }
  .newsDetail .newsDetail_left .article_content .p_bold {
    font-weight: Bold;
    text-decoration: underline;
  }
  .newsDetail .newsDetail_left .article_content .img_bm {
    margin-bottom: 16px;
  }
  .newsDetail .newsDetail_left .article_content .img_box {
    width: 100%;
    height: 216px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .newsDetail .newsDetail_left .article_content .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .newsDetail .newsDetail_left .article_content .img_box_two {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
  }
  .newsDetail .newsDetail_left .article_content .img_box_two img {
    width: 100%;
    height: 216px;
  }
  .newsDetail .newsDetail_left .article_content .img_box_two img.img_bm {
    margin: 16px;
  }
  .newsDetail .newsDetail_left .article_footer {
    padding: 32px 0 0 0;
  }
  .newsDetail .newsDetail_left .article_footer .share {
    font-size: 14px;
    color: #767676;
    line-height: 24px;
  }
  .newsDetail .newsDetail_left .article_footer ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .newsDetail .newsDetail_left .article_footer ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    height: 40px;
  }
  .newsDetail .newsDetail_left .article_footer ul li a img {
    width: 100%;
    height: 100%;
  }
  .newsDetail .article_fixed {
    display: none;
  }
  .newsDetail .newsDetail_right {
    width: 100%;
    font-style: normal;
    text-transform: none;
    padding-top: 64px;
  }
  .newsDetail .newsDetail_right .share_title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    position: relative;
  }
  .newsDetail .newsDetail_right .share_title:after {
    position: absolute;
    left: 0;
    bottom: -12px;
    content: /static/pages/css/"";
    width: 24px;
    height: 4px;
    background: #d71921;
  }
  .newsDetail .newsDetail_right .share_list {
    padding-bottom: 0;
  }
  .newsDetail .newsDetail_right .share_list .item:last-child {
    border-bottom: none;
  }
  .newsDetail .newsDetail_right .share_list .item {
    padding: 32px 0 16px 0;
    border-bottom: 1px solid #d9d9d9;
  }
  .newsDetail .newsDetail_right .share_list .item .item_img {
    width: 100%;
    height: 216px;
  }
  .newsDetail .newsDetail_right .share_list .item .item_img img {
    width: 100%;
    height: 100%;
  }
  .newsDetail .newsDetail_right .share_list .item .title {
    font-family: "fontFamily-B";
    font-size: 16px;
    color: #1e1e1e;
    line-height: 24px;
    padding-top: 16px;
    padding-bottom: 8px;
  }
  .newsDetail .newsDetail_right .share_list .item .item_des {
    height: 48px;
    font-size: 14px;
    color: #333333;
    line-height: 24px;
    margin-bottom: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* autoprefixer: off */
    -webkit-box-orient: vertical;
    /* autoprefixer: on */
  }
  .newsDetail .newsDetail_right .share_list .item .time {
    font-size: 14px;
    color: #767676;
    line-height: 24px;
  }
}
@media screen and (max-width: 800px) {
  .coreCompetencies {
    width: 100%;
  }
  .coreCompetencies .core_design {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .coreCompetencies .core_design .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .coreCompetencies .core_design .head .left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .coreCompetencies .core_design .head .left .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .coreCompetencies .core_design .head .left .title_icon {
    margin-top: 0;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .coreCompetencies .core_design .head .left .title_icon img {
    width: 100%;
  }
  .coreCompetencies .core_design .head .right {
    width: 100%;
  }
  .coreCompetencies .core_design .head .right .core_des {
    margin-top: 16px;
    width: 100%;
  }
  .coreCompetencies .core_design .head .right .core_des p {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    padding-bottom: 32px;
    text-align: center;
  }
  .coreCompetencies .core_design .head .right .core_num {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .coreCompetencies .core_design .head .right .core_num .num_item:nth-child(odd) {
    padding: 0 0 0 0;
    border-left: none;
  }
  .coreCompetencies .core_design .head .right .core_num .num_item:nth-child(1) {
    margin-bottom: 32px;
  }
  .coreCompetencies .core_design .head .right .core_num .num_item:nth-child(2) {
    margin-bottom: 32px;
  }
  .coreCompetencies .core_design .head .right .core_num .num_item {
    width: calc((100%) / 2);
    padding: 0 0 0 0;
    border-left: 1px solid #d9d9d9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .coreCompetencies .core_design .head .right .core_num .num_item .num {
    display: inline-block;
    width: auto;
    font-family: "fontFamily-Num";
    font-size: 32px;
    color: #d71921;
    line-height: 40px;
    position: relative;
  }
  .coreCompetencies .core_design .head .right .core_num .num_item .num:after {
    content: "+";
    position: absolute;
    top: 0;
    right: -0.16rem;
    font-size: 14px;
    color: #d71921;
    line-height: 24px;
  }
  .coreCompetencies .core_design .head .right .core_num .num_item .num_text {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .coreCompetencies .core_design .head .phone_right {
    width: 100%;
    overflow: hidden;
  }
  .coreCompetencies .core_design .content {
    margin-top: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .coreCompetencies .core_design .content .left {
    width: 100%;
    margin-right: 0;
  }
  .coreCompetencies .core_design .content .left .img_des {
    width: 100%;
    padding: 16px;
    background: #f7f8fa;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .coreCompetencies .core_design .content .left .img_des .icon {
    width: 51px;
    height: 32px;
    margin-right: 13px;
  }
  .coreCompetencies .core_design .content .left .img_des .icon img {
    width: 100%;
  }
  .coreCompetencies .core_design .content .left .img_des .icon .test {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .coreCompetencies .core_design .content .phone_right {
    margin-top: 16px;
    width: 100%;
    overflow: hidden;
  }
  .coreCompetencies .core_design .content .phone_right .design_list {
    width: 100%;
  }
  .coreCompetencies .core_design .content .phone_right .design_list ul li .img_box {
    width: 100%;
  }
  .coreCompetencies .core_design .content .phone_right .design_list ul li .img_box img {
    width: 100%;
    object-fit: cover;
  }
  .coreCompetencies .core_design .content .phone_right .design_list ul li .img_box .des {
    padding: 16px;
    background: #f7f8fa;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control {
    width: 100%;
    padding: 0 32px 16px 32px;
    background: #f7f8fa;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: white;
    border-radius: 16px;
    margin: 16px 0;
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control .dots {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    margin-right: 0;
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control .dots span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    --present: 20%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 0.08rem;
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control .dots span svg {
    display: none;
    --size: 24px;
    --border-width: 2px;
    --percent: 80;
    width: var(--size);
    height: var(--size);
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control .dots span svg circle {
    width: 100%;
    height: 100%;
    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: calc((var(--size) - var(--border-width)) / 2);
    fill: transparent;
    stroke: rgba(30, 30, 30, 0.2);
    stroke-width: var(--border-width);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotateZ(270deg);
        -ms-transform: rotate(270deg);
            transform: rotateZ(270deg);
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control .dots span svg circle:nth-child(2) {
    stroke: #d71921;
    stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control .dots span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(30, 30, 30, 0.2);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control .dots span:last-child {
    margin-right: 0;
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active svg {
    display: block;
  }
  .coreCompetencies .core_design .content .phone_right .design_list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active::after {
    background-color: #d71921;
  }
  .coreCompetencies .core_production {
    background: #f7f8fa;
    padding-top: 32px;
    padding-bottom: 112px;
  }
  .coreCompetencies .core_production .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .coreCompetencies .core_production .head .left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .coreCompetencies .core_production .head .left .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .coreCompetencies .core_production .head .left .title_icon {
    margin-top: 0;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .coreCompetencies .core_production .head .left .title_icon img {
    width: 100%;
  }
  .coreCompetencies .core_production .head .right {
    width: 100%;
  }
  .coreCompetencies .core_production .head .right .core_des {
    margin-top: 16px;
    width: 100%;
  }
  .coreCompetencies .core_production .head .right .core_des p {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    padding-bottom: 32px;
    text-align: center;
  }
  .coreCompetencies .core_production .head .right .core_num {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .coreCompetencies .core_production .head .right .core_num .num_item:nth-child(odd) {
    padding: 0 0 0 0;
    border-left: none;
  }
  .coreCompetencies .core_production .head .right .core_num .num_item:nth-child(1) {
    margin-bottom: 32px;
  }
  .coreCompetencies .core_production .head .right .core_num .num_item:nth-child(2) {
    margin-bottom: 32px;
  }
  .coreCompetencies .core_production .head .right .core_num .num_item {
    width: calc((100%) / 2);
    padding: 0 0 0 0;
    border-left: 1px solid #d9d9d9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .coreCompetencies .core_production .head .right .core_num .num_item .num {
    display: inline-block;
    width: auto;
    font-family: "fontFamily-Num";
    font-size: 32px;
    color: #d71921;
    line-height: 40px;
    position: relative;
  }
  .coreCompetencies .core_production .head .right .core_num .num_item .num:after {
    content: "+";
    position: absolute;
    top: 0;
    right: -0.16rem;
    font-size: 14px;
    color: #d71921;
    line-height: 24px;
  }
  .coreCompetencies .core_production .head .right .core_num .num_item .num_text {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .coreCompetencies .core_production .phone-content .red_bc {
    width: 100%;
    aspect-ratio: 1/0.7;
    padding: 32px 16px 0 16px;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_phone_1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "#F7F8FA";
    position: relative;
  }
  .coreCompetencies .core_production .phone-content .red_bc .boder {
    position: absolute;
    width: calc(100% / 12);
    height: 4px;
    background-color: #ffffff;
    top: 28px;
    opacity: 0.8;
  }
  .coreCompetencies .core_production .phone-content .red_bc .num_pro {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 12px;
    color: #ffffff;
    line-height: 16px;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone.active {
    display: block;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone {
    position: relative;
    display: none;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .item_head {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .item_head .left .title {
    font-family: "fontFamily-B";
    font-size: 16px;
    color: #ffffff;
    line-height: 24px;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .item_head .left .des {
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
    opacity: 0.8;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .item_head .right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .item_head .right .phone_left_bt {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_4.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 8px;
    cursor: pointer;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .item_head .right .phone_left_bt img {
    width: 24px;
    height: 24px;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .item_head .right .phone_right_bt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    height: 40px;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_5.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .item_head .right .phone_right_bt img {
    width: 24px;
    height: 24px;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .bigimg {
    width: 100%;
    position: absolute;
    top: 80px;
    padding-top: 62.79%;
  }
  .coreCompetencies .core_production .phone-content .red_bc .production_item_phone .des_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
  }
  .coreCompetencies .core_quality {
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .coreCompetencies .core_quality .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .coreCompetencies .core_quality .head .left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .coreCompetencies .core_quality .head .left .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .coreCompetencies .core_quality .head .left .title_icon {
    margin-top: 0;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .coreCompetencies .core_quality .head .left .title_icon img {
    width: 100%;
  }
  .coreCompetencies .core_quality .head .right {
    width: 100%;
  }
  .coreCompetencies .core_quality .head .right .core_des {
    margin-top: 16px;
    width: 100%;
  }
  .coreCompetencies .core_quality .head .right .core_des p {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    padding-bottom: 32px;
    text-align: center;
  }
  .coreCompetencies .core_quality .content {
    margin-top: 0;
  }
  .coreCompetencies .core_quality .content .quality-list {
    width: 100%;
    overflow: hidden;
  }
  .coreCompetencies .core_quality .content .quality-list ul {
    width: 100%;
  }
  .coreCompetencies .core_quality .content .quality-list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
  }
  .coreCompetencies .core_quality .content .quality-list ul li .img {
    width: 100%;
    padding-top: 62.79%;
    position: relative;
  }
  .coreCompetencies .core_quality .content .quality-list ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
  .coreCompetencies .core_quality .content .quality-list ul li:hover img:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control {
    width: 100%;
    padding: 0 32px 0 32px;
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control {
    width: 100%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: white;
    border-radius: 16px;
    margin: 16px 0 0 0;
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control .dots {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control .dots span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    --present: 20%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 0.08rem;
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control .dots span svg {
    display: none;
    --size: 24px;
    --border-width: 2px;
    --percent: 80;
    width: var(--size);
    height: var(--size);
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control .dots span svg circle {
    width: 100%;
    height: 100%;
    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: calc((var(--size) - var(--border-width)) / 2);
    fill: transparent;
    stroke: rgba(30, 30, 30, 0.2);
    stroke-width: var(--border-width);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotateZ(270deg);
        -ms-transform: rotate(270deg);
            transform: rotateZ(270deg);
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control .dots span svg circle:nth-child(2) {
    stroke: #d71921;
    stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control .dots span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(30, 30, 30, 0.2);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control .dots span:last-child {
    margin-right: 0;
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active svg {
    display: block;
  }
  .coreCompetencies .core_quality .content .quality-list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active::after {
    background-color: #d71921;
  }
  .coreCompetencies .core_honorary {
    width: 100%;
    position: relative;
  }
  .coreCompetencies .core_honorary .img_box_bc {
    width: 100%;
    aspect-ratio: 1/1.06;
  }
  .coreCompetencies .core_honorary .img_box_bc .phone-show {
    width: 100%;
  }
  .coreCompetencies .core_honorary .head {
    position: absolute;
    left: 50%;
    top: 8%;
  }
  .coreCompetencies .core_honorary .head .left {
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .coreCompetencies .core_honorary .head .left .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .coreCompetencies .core_honorary .head .left .g-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .coreCompetencies .core_honorary .head .left .g-btn a {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-color: transparent;
    margin-top: 32px;
    border: none;
  }
  .coreCompetencies .core_honorary .head .left .g-btn a .btn-text {
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
  }
  .coreCompetencies .core_honorary .head .left .title_icon {
    margin-top: 0.64rem;
    width: 0.48rem;
    height: 0.48rem;
  }
  .coreCompetencies .core_honorary .head .left .title_icon img {
    width: 100%;
  }
  .coreCompetencies .core_honorary .img_enlarge {
    position: absolute;
    width: 17.06%;
    height: auto;
  }
  .coreCompetencies .core_honorary .img_enlarge img {
    width: 100%;
  }
  .coreCompetencies .core_honorary .img_enlarge:hover .enlarge {
    display: block;
    cursor: pointer;
  }
  .coreCompetencies .core_honorary .img_1 {
    width: 12.8%;
    height: auto;
    left: 4.26%;
    bottom: 14%;
  }
  .coreCompetencies .core_honorary .img_2 {
    left: 8.53%;
    bottom: 34%;
  }
  .coreCompetencies .core_honorary .img_3 {
    left: 19.2;
    bottom: 24%;
  }
  .coreCompetencies .core_honorary .img_4 {
    left: 32%;
    bottom: 17%;
  }
  .coreCompetencies .core_honorary .img_5 {
    right: 42%;
    top: 48%;
  }
  .coreCompetencies .core_honorary .img_6 {
    right: 31.73%;
    bottom: 17%;
  }
  .coreCompetencies .core_honorary .img_7 {
    right: 21.06%;
    bottom: 30%;
  }
  .coreCompetencies .core_honorary .img_8 {
    right: 1.86%;
    bottom: 30%;
  }
  .coreCompetencies .core_footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    position: relative;
    padding-top: 128%;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_footer_phone.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
  }
  .coreCompetencies .core_footer .content {
    position: absolute;
    top: 13.33%;
    left: 16px;
    width: calc(100% - 32px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #ffffff;
  }
  .coreCompetencies .core_footer .content h1 {
    font-family: "fontFamily-B";
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
    position: relative;
    text-align: center;
  }
  .coreCompetencies .core_footer .content .title::after {
    content: /static/pages/css/"";
    width: 24px;
    height: 4px;
    background: #d71921;
    position: absolute;
    bottom: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .coreCompetencies .core_footer .content p {
    text-align: center;
    height: 120px;
    font-size: 14px;
    color: #ffffff;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* autoprefixer: off */
    -webkit-box-orient: vertical;
    /* autoprefixer: on */
    margin-bottom: 32px;
  }
  .coreCompetencies .core_footer .content .g-btn a {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    background-color: transparent;
    margin-top: 0;
    border: none;
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
  }
  .coreCompetencies .core_footer .content .g-btn a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 800px) {
  .companyNews .companyNews-news {
    padding-top: 0;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list {
    margin-top: 0;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li {
    border-bottom: 1px solid #d9d9d9;
    padding: 32px 0 16px 0;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li:first-child {
    padding-top: 32px;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    padding-right: 0;
    border-right: none;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._left .img {
    width: 100%;
    height: auto;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._left .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 0;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._right .title {
    font-family: "fontFamily-B";
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    color: #1e1e1e;
    line-height: 24px;
    margin-top: 16px;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li a ._right .context {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 8px;
    font-size: 14px;
    color: #333333;
    line-height: 24px;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news-list ul li a .phone_time {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    font-size: 14px;
    color: #767676;
    line-height: 24px;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news_footer {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
    margin-bottom: 64px;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news_footer .g-btn a {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
    margin-top: 0;
    border: none;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news_footer .g-btn a .btn-text {
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
  }
  .companyNews .companyNews-news .wal .index-news-inner .news_footer .g-btn a::after {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 800px) {
  .lookFuture .look_banner .banner_img {
    width: 100%;
  }
  .lookFuture .look_banner .banner_img img {
    width: 100%;
    object-fit: contain;
  }
  .lookFuture .look_content {
    background: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lookFuture .look_content .look_item {
    background: #ffffff;
    position: relative;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
    padding: 32px 16px 0 16px;
  }
  .lookFuture .look_content .look_item .look_head:first-child {
    padding-top: 0;
  }
  .lookFuture .look_content .look_item .look_head:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: none;
  }
  .lookFuture .look_content .look_item .look_head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #d9d9d9;
  }
  .lookFuture .look_content .look_item .look_head .title {
    position: relative;
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .lookFuture .look_content .look_item .look_head .look_right {
    width: 100%;
    margin-top: 16px;
    padding-right: 0;
  }
  .lookFuture .look_content .look_item .look_head .look_right p {
    font-weight: 400;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    min-height: 10px;
  }
  .lookFuture .look_content .look_item .look_footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 32px;
    position: relative;
    padding-bottom: 0;
  }
  .lookFuture .look_content .look_item .look_footer .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .lookFuture .look_content .look_item .look_footer .look_right {
    width: 100%;
    margin-top: 12px;
    padding-right: 0;
  }
  .lookFuture .look_content .look_item .look_footer .look_right p {
    font-weight: 400;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    margin-bottom: 32px;
  }
  .lookFuture .look_img.phone-show {
    width: 100%;
  }
  .lookFuture .look_img.phone-show img {
    width: 100%;
    object-fit: contain;
  }
}
@media screen and (max-width: 800px) {
  .recruitment .top .banner {
    width: 100%;
    padding-top: 128%;
    position: relative;
  }
  .recruitment .top .banner .b-g-i {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .recruitment .content {
    padding: 32px 0 64px 0;
  }
  .recruitment .content .wal .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recruitment .content .wal .header .title {
    padding-bottom: 12px;
  }
  .recruitment .content .wal .header .title h1 {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
  }
  .recruitment .content .wal .main {
    margin-top: 16px;
    border-top: 1px solid #d9d9d9;
  }
  .recruitment .content .wal .main .list .item {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
  }
  .recruitment .content .wal .main .list .item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .recruitment .content .wal .main .list .item a .left .top {
    font-family: "fontFamily-B";
    font-size: 16px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .recruitment .content .wal .main .list .item a .left .bottom ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .recruitment .content .wal .main .list .item a .left .bottom ul li {
    font-size: 12px;
    color: #767676;
    line-height: 24px;
    padding: 0 8px 0;
    margin-top: 8px;
    position: relative;
  }
  .recruitment .content .wal .main .list .item a .left .bottom ul li::after {
    content: /static/pages/css/"";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    height: 16px;
    width: 1px;
    background: #d9d9d9;
  }
  .recruitment .content .wal .main .list .item a .left .bottom ul li:nth-child(1) {
    padding-left: 0;
  }
  .recruitment .content .wal .main .list .item a .left .bottom ul li:last-child::after {
    height: 0;
    width: 0;
  }
  .recruitment .content .wal .main .list .item a .right {
    font-size: 12px;
    color: #a6a6a6;
    line-height: 24px;
  }
  .recruitment .content .wal .re_footer {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
    margin-bottom: 0;
  }
  .recruitment .content .wal .re_footer .g-btn a {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
    margin-top: 0;
    border: none;
  }
  .recruitment .content .wal .re_footer .g-btn a .btn-text {
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
  }
  .recruitment .content .wal .re_footer .g-btn a::after {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 800px) {
  .recruitmentDetails .top .banner {
    width: 100%;
    padding-top: 128%;
    position: relative;
  }
  .recruitmentDetails .top .banner .b-g-i {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .recruitmentDetails .content .header {
    padding: 32px 0 0 0;
    background: #f8f8f8;
    position: relative;
  }
  .recruitmentDetails .content .header .wal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .recruitmentDetails .content .header .wal .title h1 {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
  }
  .recruitmentDetails .content .header .wal .title .bottom ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .recruitmentDetails .content .header .wal .title .bottom ul li {
    font-size: 12px;
    color: #767676;
    line-height: 24px;
    padding: 0 8px 0;
    margin-top: 8px;
    position: relative;
  }
  .recruitmentDetails .content .header .wal .title .bottom ul li::after {
    content: /static/pages/css/"";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    height: 16px;
    width: 1px;
    background: #d9d9d9;
  }
  .recruitmentDetails .content .header .wal .title .bottom ul li:nth-child(1) {
    padding-left: 0;
  }
  .recruitmentDetails .content .header .wal .title .bottom ul li:last-child::after {
    right: 0;
    height: 0;
    width: 0;
  }
  .recruitmentDetails .content .header .right {
    width: 100%;
    position: relative;
    margin-top: 32px;
    top: 0;
    right: 0;
    padding: 16px 0 16px 16px;
    background: #d71921;
  }
  .recruitmentDetails .content .header .right div {
    font-size: 14px;
    color: #ffffff;
    line-height: 24px;
  }
  .recruitmentDetails .content .main {
    padding: 32px 16px 64px 16px;
  }
  .recruitmentDetails .content .main .title {
    font-family: "fontFamily-B";
    font-size: 16px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .recruitmentDetails .content .main ul {
    margin-top: 8px;
  }
  .recruitmentDetails .content .main ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    color: #767676;
    line-height: 24px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 800px) {
  .socialResponsibility .top .banner {
    padding-top: 128%;
  }
  .socialResponsibility .top .banner .b-g-i {
    position: absolute;
    object-fit: contain;
  }
  .socialResponsibility .con-main .wal {
    padding: 32px 0 64px 0;
  }
  .socialResponsibility .con-main .wal .policy {
    position: relative;
  }
  .socialResponsibility .con-main .wal .policy .title {
    margin-left: 16px;
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .socialResponsibility .con-main .wal .policy .desc {
    width: 100%;
    margin-top: 48px;
    background: #f7f8fa;
    padding: 16px 16px 86%;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .socialResponsibility .con-main .wal .policy .desc p {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .socialResponsibility .con-main .wal .policy .desc .li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: "fontFamily-B";
  }
  .socialResponsibility .con-main .wal .policy .desc .li .index {
    color: #1e1e1e;
    font-size: 14px;
    line-height: 24px;
  }
  .socialResponsibility .con-main .wal .policy .desc .li p {
    font-family: "fontFamily-B";
    margin-bottom: 16px;
  }
  .socialResponsibility .con-main .wal .policy .desc .lin {
    text-decoration: underline;
  }
  .socialResponsibility .con-main .wal .policy .desc .op {
    color: #767676;
  }
  .socialResponsibility .con-main .wal .policy .desc ._bottom {
    margin-bottom: 16px;
  }
  .socialResponsibility .con-main .wal .policy .right {
    padding: 0 16px;
    position: absolute;
    top: auto;
    right: 0;
    width: 100%;
    bottom: 0;
  }
  .socialResponsibility .con-main .wal .policy .right .img {
    width: 100%;
    position: relative;
    padding-top: 86.4%;
    overflow: hidden;
  }
  .socialResponsibility .con-main .wal .policy .right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
  }
  .socialResponsibility .con-main .wal .list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 32px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  .socialResponsibility .con-main .wal .list li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .socialResponsibility .con-main .wal .list li:nth-child(3n) {
    margin-right: 0;
  }
  .socialResponsibility .con-main .wal .list li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .socialResponsibility .con-main .wal .list li {
    width: calc((100% - ((1 - 1) * 16px)) / 1);
    margin-right: 16px;
    margin-top: 16px;
  }
  .socialResponsibility .con-main .wal .list li:nth-child(1n) {
    margin-right: 0;
  }
  .socialResponsibility .con-main .wal .list li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .socialResponsibility .con-main .wal .list li .zoom_img {
    width: 100%;
  }
  .socialResponsibility .con-main .wal .list li .zoom_img img {
    width: 100%;
    object-fit: contain;
  }
}
@media screen and (max-width: 800px) {
  .socialResponsibility .con-main .wal .list li .text {
    padding: 16px 0 16px 16px;
    background: #f7f8fa;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    position: relative;
  }
  .socialResponsibility .con-main .wal .list li .text::after {
    content: /static/pages/css/"";
    position: absolute;
    width: 2px;
    height: 24px;
    background: #d71921;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 800px) {
  .socialResponsibility .con-main .wal .em_footer {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
    margin-bottom: 0;
  }
  .socialResponsibility .con-main .wal .em_footer .g-btn a {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
    margin-top: 0;
    border: none;
  }
  .socialResponsibility .con-main .wal .em_footer .g-btn a .btn-text {
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
  }
  .socialResponsibility .con-main .wal .em_footer .g-btn a::after {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 800px) {
  .service .top .banner {
    width: 100%;
    padding-top: 128%;
    position: relative;
  }
  .service .top .banner .b-g-i {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .service .content .wal {
    padding: 32px 16px;
  }
  .service .content .wal .first:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service .content .wal .first {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 32px;
  }
  .service .content .wal .first .left {
    width: 100%;
  }
  .service .content .wal .first .left .bigimg {
    width: 100%;
    position: relative;
    padding-top: 62.79%;
  }
  .service .content .wal .first .left .bigimg img {
    position: absolute;
    top: 0;
    width: 100%;
    object-fit: cover;
  }
  .service .content .wal .first .right {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    background-color: #f7f8fa;
    padding: 16px 24px 32px 16px;
  }
  .service .content .wal .first .right .index {
    position: relative;
    top: 0;
    left: 0;
    font-family: "fontFamily-Num";
    font-size: 72px;
    color: rgba(0, 0, 0, 0.05);
    line-height: 80px;
  }
  .service .content .wal .first .right .text {
    max-width: 100%;
    margin-top: 16px;
  }
  .service .content .wal .first .right .text .title {
    font-family: "fontFamily-B";
    font-size: 20px;
    color: #1e1e1e;
    line-height: 32px;
  }
  .service .content .wal .first .right .text .content {
    margin-top: 16px;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
  }
}
@media screen and (max-width: 800px) {
  .talentConcept .top .banner {
    width: 100%;
    padding-top: 128%;
    position: relative;
  }
  .talentConcept .top .banner .b-g-i {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .talentConcept .content .wal {
    padding: 32px 16px 64px 16px;
  }
  .talentConcept .content .wal .listBox:nth-child(1n) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
    position: relative;
    margin-bottom: 0;
  }
  .talentConcept .content .wal .listBox:nth-child(1n) .icon {
    position: relative;
    width: 40px;
    height: 32px;
    top: 0;
    left: 0;
    margin-bottom: 32px;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/talent_icon_1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
  }
  .talentConcept .content .wal .listBox:nth-child(1n) .phone_left {
    position: relative;
    width: 95.62%;
    background: #d71921;
    z-index: 10;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    line-height: 32px;
    padding: 32px 16px 32px 32px;
    -webkit-transform: translate(-16px, -32px);
        -ms-transform: translate(-16px, -32px);
            transform: translate(-16px, -32px);
    -webkit-clip-path: polygon(0% 0%, 97% 0%, 120% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 97% 0%, 120% 100%, 0% 100%);
  }
  .talentConcept .content .wal .listBox:nth-child(1n) .phone_left::after {
    content: /static/pages/css/"";
    position: absolute;
    height: 4px;
    width: 48px;
    left: 32px;
    top: 0;
    background: #f6f6f6;
  }
  .talentConcept .content .wal .listBox:nth-child(1n) .right {
    position: relative;
    width: 100%;
    right: 0;
    top: 0;
  }
  .talentConcept .content .wal .listBox:nth-child(1n) .right .bigimg {
    width: 100%;
    padding-top: 62.79%;
    position: relative;
  }
  .talentConcept .content .wal .listBox:nth-child(1n) .right .bigimg img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
  }
  .talentConcept .content .wal .listBox:nth-child(2n) {
    padding-top: 32px;
    position: relative;
    margin-bottom: 0;
    overflow: inherit;
  }
  .talentConcept .content .wal .listBox:nth-child(2n) .icon {
    position: absolute;
    width: 40px;
    height: 32px;
    top: 0;
    right: 0;
    left: auto;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/talent_icon_2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
  }
  .talentConcept .content .wal .listBox:nth-child(2n) .phone_left {
    position: relative;
    width: 95.62%;
    background: #f7f8fa;
    z-index: 10;
    font-weight: 500;
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding: 32px 16px 32px 56px;
    -webkit-transform: translate(16px, -32px);
        -ms-transform: translate(16px, -32px);
            transform: translate(16px, -32px);
    overflow: hidden;
    -webkit-clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
            clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
    margin-left: auto;
  }
  .talentConcept .content .wal .listBox:nth-child(2n) .phone_left::after {
    content: /static/pages/css/"";
    position: absolute;
    height: 4px;
    width: 48px;
    right: 32px;
    top: 0;
    background: #d71921;
  }
  .talentConcept .content .wal .listBox:nth-child(2n) .right {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin-top: 32px;
  }
  .talentConcept .content .wal .listBox:nth-child(2n) .right img {
    width: 100%;
    object-fit: contain;
  }
  .talentConcept .content .wal .listBox:nth-child(3n) {
    padding-top: 0;
    position: relative;
    margin-bottom: 0;
  }
  .talentConcept .content .wal .listBox:nth-child(3n) .icon {
    position: relative;
    width: 40px;
    height: 32px;
    top: 0;
    left: 0;
    margin-bottom: 32px;
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/talent_icon_3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
  }
  .talentConcept .content .wal .listBox:nth-child(3n) .phone_left {
    position: relative;
    width: 95.62%;
    background: #1e1e1e;
    z-index: 10;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    line-height: 32px;
    padding: 32px 16px 32px 32px;
    -webkit-transform: translate(-16px, -32px);
        -ms-transform: translate(-16px, -32px);
            transform: translate(-16px, -32px);
    -webkit-clip-path: polygon(0% 0%, 97% 0%, 120% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 97% 0%, 120% 100%, 0% 100%);
  }
  .talentConcept .content .wal .listBox:nth-child(3n) .phone_left::after {
    content: /static/pages/css/"";
    position: absolute;
    height: 4px;
    width: 48px;
    left: 32px;
    top: 0;
    background: #ffffff;
  }
  .talentConcept .content .wal .listBox:nth-child(3n) .right {
    position: relative;
    width: 100%;
    right: 0;
    top: 0;
  }
  .talentConcept .content .wal .listBox:nth-child(3n) .right img {
    width: 100%;
    object-fit: contain;
  }
}
@media screen and (max-width: 800px) {
  .employeeStyle .top .banner {
    width: 100%;
    padding-top: 128%;
    position: relative;
  }
  .employeeStyle .top .banner .b-g-i {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .employeeStyle .content .wal {
    padding: 32px 16px 64px 16px;
  }
  .employeeStyle .content .wal .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .employeeStyle .content .wal .list ul li {
    margin-top: 16px !important;
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  .employeeStyle .content .wal .list ul li {
    width: calc((100% - ((3 - 1) * 0.32rem)) / 3);
    margin-right: 0.32rem;
    margin-top: 0.32rem;
  }
  .employeeStyle .content .wal .list ul li:nth-child(3n) {
    margin-right: 0;
  }
  .employeeStyle .content .wal .list ul li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .employeeStyle .content .wal .list ul li {
    width: calc((100% - ((1 - 1) * 16px)) / 1);
    margin-right: 16px;
    margin-top: 16px;
  }
  .employeeStyle .content .wal .list ul li:nth-child(1n) {
    margin-right: 0;
  }
  .employeeStyle .content .wal .list ul li:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .employeeStyle .content .wal .list ul li .zoom_img {
    width: 100%;
    position: relative;
    padding-top: 80.35%;
  }
  .employeeStyle .content .wal .list ul li .zoom_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 800px) {
  .employeeStyle .content .wal .list ul li .text {
    padding: 16px;
    background: #f7f8fa;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    position: relative;
  }
  .employeeStyle .content .wal .list ul li .text::after {
    content: /static/pages/css/"";
    position: absolute;
    width: 2px;
    height: 24px;
    background: #d71921;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 800px) {
  .employeeStyle .content .wal .em_footer {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
    margin-bottom: 0;
  }
  .employeeStyle .content .wal .em_footer .g-btn a {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
    margin-top: 0;
    border: none;
  }
  .employeeStyle .content .wal .em_footer .g-btn a .btn-text {
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
  }
  .employeeStyle .content .wal .em_footer .g-btn a::after {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 800px) {
  .downloadCenter .top .banner {
    width: 100%;
    padding-top: 128%;
    position: relative;
  }
  .downloadCenter .top .banner .b-g-i {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .downloadCenter .dl_content {
    padding: 32px 16px 64px 16px;
  }
  .downloadCenter .dl_content .dl_header {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .downloadCenter .dl_content .dl_main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 32px;
  }
  .downloadCenter .dl_content .dl_main .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin-right: 0;
    border: none;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item {
    padding: 0;
    padding-left: 24px;
    position: relative;
    border-bottom: none;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item .menu_icon {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item .menu_icon .menu_img {
    display: none;
    width: 100%;
    object-fit: contain;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item .menu_icon .show {
    display: block;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_title {
    font-family: "fontFamily-B";
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    cursor: pointer;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_content {
    display: none;
    margin-top: 16px;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_content li {
    cursor: pointer;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .downloadCenter .dl_content .dl_main .menu .menu_item .menu_item_content li:last-child {
    margin-bottom: 0;
  }
  .downloadCenter .dl_content .dl_main .list {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-top: none;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show {
    margin-top: 32px;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li {
    padding: 16px 8px 16px 16px;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li:first-child {
    border-top: 1px solid #d9d9d9;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe .icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe .icon img {
    width: 100%;
    object-fit: contain;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe .content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe .content .title {
    font-family: "fontFamily-B";
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe .content .des {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    color: #767676;
    line-height: 24px;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe .content .des li {
    padding: 0 8px;
    position: relative;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe .content .des li:nth-child(1) {
    padding: 0 8px 0 0;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe .content .des li::after {
    content: /static/pages/css/"";
    width: 1px;
    height: 16px;
    position: absolute;
    top: 50%;
    background: #d9d9d9;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  .downloadCenter .dl_content .dl_main .list .table.phone-show .table-li .li-fe .content .des li:last-child::after {
    width: 0;
  }
  .downloadCenter .dl_content .dl_main .list .pagination-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.64rem;
  }
  .downloadCenter .dl_content .dl_main .list .to-ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
    margin-bottom: 0;
  }
  .downloadCenter .dl_content .dl_main .list .to-ul .g-btn {
    -webkit-clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
  }
  .downloadCenter .dl_content .dl_main .list .to-ul .g-btn a {
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/core_icon_bc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
    margin-top: 0;
    border: none;
  }
  .downloadCenter .dl_content .dl_main .list .to-ul .g-btn a .btn-text {
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
  }
  .downloadCenter .dl_content .dl_main .list .to-ul .g-btn a::after {
    width: 24px;
    height: 24px;
  }
  .downloadCenter .dl_content .menu_fixed {
    margin-top: 44px;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
  }
  .downloadCenter .dl_content .menu_fixed.show {
    display: block;
    z-index: 10;
  }
  .downloadCenter .dl_content .menu_fixed .menu {
    z-index: 99999;
    width: 100%;
    padding: 16px 16px 32px;
    background: #ffffff;
  }
  .downloadCenter .dl_content .menu_fixed .menu .header {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
  }
  .downloadCenter .dl_content .menu_fixed .menu .header .menu_item_phone {
    padding: 0;
    padding-left: 24px;
    position: relative;
    border-bottom: none;
  }
  .downloadCenter .dl_content .menu_fixed .menu .header .menu_item_phone.on .menu_icon .menu_img_phone:nth-child(1) {
    display: block;
  }
  .downloadCenter .dl_content .menu_fixed .menu .header .menu_item_phone.on .menu_icon .menu_img_phone:nth-child(2) {
    display: none;
  }
  .downloadCenter .dl_content .menu_fixed .menu .header .menu_item_phone .menu_icon {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .downloadCenter .dl_content .menu_fixed .menu .header .menu_item_phone .menu_icon .menu_img_phone {
    display: none;
    width: 100%;
    object-fit: contain;
  }
  .downloadCenter .dl_content .menu_fixed .menu .header .menu_item_phone .menu_icon .menu_img_phone:nth-child(2) {
    display: block;
  }
  .downloadCenter .dl_content .menu_fixed .menu .header .menu_item_phone .menu_item_title_phone {
    font-family: "fontFamily-B";
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    cursor: pointer;
  }
  .downloadCenter .dl_content .menu_fixed .menu .menu_item_list .menu_item_content_phone {
    display: none;
    margin-top: 16px;
  }
  .downloadCenter .dl_content .menu_fixed .menu .menu_item_list .menu_item_content_phone li {
    cursor: pointer;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .downloadCenter .dl_content .menu_fixed .menu .menu_item_list .menu_item_content_phone li.red {
    color: #ff0000;
  }
  .downloadCenter .dl_content .menu_fixed .menu .menu_item_list .menu_item_content_phone li:last-child {
    margin-bottom: 0;
  }
  .downloadCenter .dl_content .menu_fixed .menu .menu_item_list .menu_item_content_phone.onshow {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .solution .top .banner {
    width: 100%;
    padding-top: 128%;
    position: relative;
  }
  .solution .top .banner .b-g-i {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .solution .content {
    padding: 32px 0 0 0;
  }
  .solution .content .first {
    padding-bottom: 32px;
  }
  .solution .content .first .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .solution .content .first .header .left {
    width: 100%;
  }
  .solution .content .first .header .left .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .solution .content .first .header .left .text {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
    margin-top: 16px;
  }
  .solution .content .first .header .right {
    display: none;
  }
  .solution .content .first .list {
    margin-top: 32px;
  }
  .solution .content .first .list .solution_list {
    width: 100%;
    overflow: hidden;
  }
  .solution .content .first .list .solution_list ul {
    width: 100%;
  }
  .solution .content .first .list .solution_list ul li {
    padding: 16px 16px 32px 16px;
    background: #f7f8fa;
    margin-top: 0;
  }
  .solution .content .first .list .solution_list ul li .index {
    width: 56px;
    height: 56px;
    font-family: "fontFamily-Num";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "fontFamily-Num";
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/solution_icon_3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
  }
  .solution .content .first .list .solution_list ul li .title {
    margin-top: 32px;
    font-family: "fontFamily-B";
    font-size: 20px;
    color: #1e1e1e;
    line-height: 32px;
  }
  .solution .content .first .list .solution_list ul li .desc {
    margin-top: 16px;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .solution .content .first .list .solution_list .bottom-control {
    width: 100%;
    padding: 0 32px 0 32px;
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control {
    width: 100%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: white;
    border-radius: 16px;
    margin: 0 0 0 0;
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control .dots {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control .dots span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    --present: 20%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 0.08rem;
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control .dots span svg {
    display: none;
    --size: 24px;
    --border-width: 2px;
    --percent: 80;
    width: var(--size);
    height: var(--size);
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control .dots span svg circle {
    width: 100%;
    height: 100%;
    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: calc((var(--size) - var(--border-width)) / 2);
    fill: transparent;
    stroke: rgba(30, 30, 30, 0.2);
    stroke-width: var(--border-width);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotateZ(270deg);
        -ms-transform: rotate(270deg);
            transform: rotateZ(270deg);
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control .dots span svg circle:nth-child(2) {
    stroke: #d71921;
    stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control .dots span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(30, 30, 30, 0.2);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control .dots span:last-child {
    margin-right: 0;
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active svg {
    display: block;
  }
  .solution .content .first .list .solution_list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active::after {
    background-color: #d71921;
  }
  .solution .content .second {
    background: #f7f8fa;
  }
  .solution .content .second .wal {
    padding: 32px 16px;
  }
  .solution .content .second .wal .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .solution .content .second .wal .solution_list {
    margin-top: 16px;
    width: 100%;
    overflow: hidden;
  }
  .solution .content .second .wal .solution_list .phone_list li {
    background: #ffffff;
    padding: 40px 16px 16px;
  }
  .solution .content .second .wal .solution_list .phone_list li .zoom_img {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .solution .content .second .wal .solution_list .phone_list li .zoom_img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
  }
  .solution .content .second .wal .solution_list .phone_list li .content_item .title {
    font-family: "fontFamily-B";
    font-size: 16px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .solution .content .second .wal .solution_list .phone_list li .content_item .desc {
    font-size: 14px;
    color: #767676;
    line-height: 24px;
    margin: 8px 0 16px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .solution .content .second .wal .solution_list .phone_list li .more_txt {
    width: 80px;
    font-size: 14px;
    color: #d71921;
    line-height: 24px;
    position: relative;
  }
  .solution .content .second .wal .solution_list .phone_list li .more_txt:after {
    width: 24px;
    height: 24px;
    content: /static/pages/css/"";
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/solution_icon_4.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .solution .content .second .wal .solution_list .bottom-control {
    width: 100%;
    padding: 0 32px 0 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: white;
    border-radius: 16px;
    margin: 16px 0 0 0;
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control .dots {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control .dots span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    --present: 20%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 0.08rem;
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control .dots span svg {
    display: none;
    --size: 24px;
    --border-width: 2px;
    --percent: 80;
    width: var(--size);
    height: var(--size);
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control .dots span svg circle {
    width: 100%;
    height: 100%;
    cx: calc(var(--size) / 2);
    cy: calc(var(--size) / 2);
    r: calc((var(--size) - var(--border-width)) / 2);
    fill: transparent;
    stroke: rgba(30, 30, 30, 0.2);
    stroke-width: var(--border-width);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotateZ(270deg);
        -ms-transform: rotate(270deg);
            transform: rotateZ(270deg);
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control .dots span svg circle:nth-child(2) {
    stroke: #d71921;
    stroke-dasharray: calc(2 * 3.1415 * (var(--size) - var(--border-width)) / 2 * (var(--percent) / 100)), 1000;
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control .dots span::after {
    content: /static/pages/css/"";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(30, 30, 30, 0.2);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control .dots span:last-child {
    margin-right: 0;
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active svg {
    display: block;
  }
  .solution .content .second .wal .solution_list .bottom-control .swiper-control .dots span.swiper-pagination-bullet-active::after {
    background-color: #d71921;
  }
  .solution .content .third .wal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 16px 64px;
    position: relative;
  }
  .solution .content .third .wal .left {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }
  .solution .content .third .wal .left .title {
    font-family: "fontFamily-B";
    font-size: 24px;
    color: #1e1e1e;
    line-height: 32px;
    padding-bottom: 12px;
  }
  .solution .content .third .wal .left .phone_right {
    margin-top: 48px;
    position: relative;
  }
  .solution .content .third .wal .left .phone_right .bg_img {
    position: absolute;
    width: 90.96%;
    object-fit: contain;
    top: -16px;
    right: 0;
  }
  .solution .content .third .wal .left .phone_right .bg_img .bigimg {
    width: 100%;
    position: relative;
    padding-top: 61.53%;
  }
  .solution .content .third .wal .left .phone_right .bg_img .bigimg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
  }
  .solution .content .third .wal .left .phone_right .zoom_img {
    z-index: 9;
    object-fit: contain;
    width: 95.62%;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .solution .content .third .wal .left .phone_right .zoom_img .bigimg {
    width: 100%;
    position: relative;
    padding-top: 63.41%;
  }
  .solution .content .third .wal .left .phone_right .zoom_img .bigimg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
  }
  .solution .content .third .wal .left .fu_title {
    margin-top: 16px;
    width: 100%;
    font-family: "fontFamily-B";
    font-size: 16px;
    color: #1e1e1e;
    line-height: 24px;
  }
  .solution .content .third .wal .left .center {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .solution .content .third .wal .left .more_bt {
    margin-top: 32px;
  }
  .solution .content .third .wal .left .more_bt a {
    background-color: transparent;
  }
  .solution .content .fourth {
    position: relative;
    margin-bottom: 64px;
  }
  .solution .content .fourth .wal {
    padding: 0 16px 32px;
    height: auto;
  }
  .solution .content .fourth .wal .left {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 0 !important;
    max-width: 50%;
    aspect-ratio: 1/0.5333;
    padding: 0 0;
  }
  .solution .content .fourth .wal .left .title {
    padding-top: 32px;
    font-family: "fontFamily-B";
    font-size: 20px;
    color: #1E1E1E;
    line-height: 32px;
  }
  .solution .content .fourth .wal .left .more_bt {
    width: 152px;
    margin-top: 32px;
    padding: 8 16px;
    background: #d71921;
    -webkit-clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 96% 0%, 120% 100%, 0% 100%);
  }
  .solution .content .fourth .wal .left .more_bt a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
    position: relative;
  }
  .solution .content .fourth .wal .left .more_bt a:after {
    width: 24px;
    height: 24px;
    content: /static/pages/css/"";
    background-image: url(https://wsddata.bfqxfsgs.com/static/image/szfuture/news/solution_icon_2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: "transparent";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .solution .content .fourth .wal .right {
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
    z-index: -1;
  }
  .solution .content .fourth .wal .right img {
    width: 100%;
    object-fit: cover;
  }
}
<!--0.00050711631774902-->