@charset "UTF-8";
@font-face {
  font-family: "fontFamily-R";
  src: url(../fonts/SourceHanSansCN-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "fontFamily-M";
  src: url(../fonts/SourceHanSansCN-Medium.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "fontFamily-B";
  src: url(../fonts/SourceHanSansCN-Bold.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "fontFamily-TR";
  src: url(../fonts/Montserrat-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "fontFamily-TM";
  src: url(../fonts/Montserrat-Medium.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "fontFamily-TB";
  src: url(../fonts/Montserrat-SemiBold.woff2) format("woff2");
  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 手机端栅格间隔
 */
/*
 * 富文本初始化
 */
@-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;
  }
}
@media screen and (min-width: 800px) {
  .fadeInUpSmall {
    opacity: 0;
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
  }
}

/* 集合属性（主题样式） */
/* 全局样式变量 */
:root {
  /* 以下颜色根据设计稿的不同来设置 */
  --sk-global-color: #FF9900;
  /* -------------- 主题色 ---------------*/
  --sk-global-color-hover: #E48900;
  /* -------------- 主题色hover ---------------*/
  --sk-global-color-02: #1B1B1B;
  /* -------------- 2号主题色 ---------------*/
  --sk-global-color-03: #969696;
  /* -------------- 3号主题色 ---------------*/
  --fcolor-white: #FFFFFF;
  --fcolor-black: #000000;
  --fcolor-defult: #333333;
  --fcolor-defult-02: #666666;
  --fcolor-defult-03: #999999;
  --fz-h1: .48rem;
  /* -------------- 一级标题字号 ---------------*/
  --fz-h2: .42rem;
  /* -------------- 二级标题字号 ---------------*/
  --fz-context: .16rem;
  /* -------------- 正文字号 ------------------*/
  --lh-h1: .64rem;
  /* -------------- 一级标题行高 ---------------*/
  --lh-h2: .63rem;
  /* -------------- 二级标题行高 ---------------*/
  --lh-context: .26rem;
  /* -------------- 正文行高 -------------------*/
  /* 层级 */
  --sk-zIndex-1: 1;
  /* --------------页面元素层级 --*/
  --sk-zIndex-2: 2;
  /* --------------页面元素层级 --*/
  --sk-zIndex-3: 3;
  /* --------------页面元素层级 --*/
  --sk-zIndex-10: 10;
  /* --------------页面元素层级 --*/
  --sk-zIndex-100: 100;
  /* --------------头部导航层级 --*/
  --sk-zIndex-999: 999;
  /* --------------弹窗层级 ------*/
  --sk-zIndex-1000: 1000;
}
@media screen and (max-width: 800px) {
  :root {
    --fz-h1: .64rem;
    --fz-h2: .56rem;
    --fz-context: .26rem;
    --lh-h1: .96rem;
    --lh-h2: .84rem;
    --lh-context: .39rem;
  }
}

body.show a,
body.show .transition,
body.show :before,
body.show img {
  -webkit-transition: All 0.3s ease;
  transition: All 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100px;
  overflow-x: hidden;
}

body {
  font-family: "fontFamily-R";
  font-size: 12px;
  color: var(--fcolor-defult);
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  background-color: white;
}
body.show {
  opacity: 1;
}

a {
  color: var(--fcolor-defult);
  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: var(--fcolor-defult);
  outline: none;
  border: 0;
}

em {
  font-style: normal;
}

img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
  object-fit: cover;
}

/*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: var(--sk-global-color);
  border: 0.02rem solid var(--sk-global-color);
  box-shadow: 0 0 10px 0 var(--sk-global-color);
}
.topA:hover::after {
  color: white;
  font-size: 12px;
}
.topA.show {
  opacity: 1;
  visibility: visible;
}

.wal {
  max-width: 15.2rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1700px) {
  body {
    font-size: 16px;
  }

  html {
    font-size: 94px;
  }
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 14px;
  }

  html {
    font-size: 82px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 74px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 68px;
  }
}
@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 0.4rem;
  }

  .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;
  }
}
:root {
  --totalH: 0.91rem;
  --headH: 0.91rem;
}
@media screen and (max-width: 800px) {
  :root {
    --totalH: 1.2rem;
    --headH: 1.2rem;
  }
}

.hry__btn {
  padding: 0 0.45rem;
  height: 0.4rem;
  min-width: 1.75rem;
  font-size: 0.14rem;
  line-height: 0.28rem;
  border: 0.01rem solid #333333;
  border-radius: 0.03rem;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .hry__btn {
    min-width: 3.76rem;
    height: 0.8rem;
    border-radius: 0.08rem;
    padding: 0 0.8rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
    letter-spacing: 0.04rem;
  }
}
@media screen and (min-width: 800px) {
  .hry__btn:hover {
    background: var(--sk-global-color);
    border: 0.01rem solid var(--sk-global-color);
    color: #FFFFFF;
  }
}
.hry__btn.fill__btn {
  background: var(--sk-global-color);
  border: 0.01rem solid var(--sk-global-color);
  color: #FFFFFF;
}
@media screen and (min-width: 800px) {
  .hry__btn.fill__btn:hover {
    background: var(--sk-global-color-hover);
    border: 0.01rem solid var(--sk-global-color-hover);
  }
}
.hry__btn.hry__btn__white {
  border: 0.01rem solid #FFFFFF;
  color: #FFFFFF;
}
@media screen and (min-width: 800px) {
  .hry__btn.hry__btn__white:hover {
    border: 0.01rem solid var(--sk-global-color-hover);
  }
}

.--fz-h1 {
  font-size: var(--fz-h1);
  line-height: var(--lh-h1);
  color: #FFFFFF;
  font-weight: normal;
  font-family: "fontFamily-B";
  letter-spacing: 0.04rem;
}
.--fz-h1.__black {
  color: var(--fcolor-defult);
}

.--fz-h2 {
  font-size: var(--fz-h2);
  line-height: var(--lh-h2);
  font-family: "fontFamily-B";
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 800px) {
  .--fz-h2 {
    letter-spacing: 0.05rem;
  }
}

.--lh-context {
  font-size: var(--fz-context);
  line-height: var(--lh-context);
  color: #666666;
}

header {
  --fcolor: white;
  --fcolor01: white;
  --fcolor02: #666666;
  --fcolor03: #999999;
  width: 100%;
  height: var(--totalH);
  background-color: transparent;
  z-index: 99;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 0.16rem;
  position: fixed;
  top: 0;
}
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 .g-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--headH);
  z-index: 99;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-bottom: 0.01rem solid transparent;
}
header .g-head > .wal {
  max-width: 100%;
  padding: 0 0.8rem;
}
header .g-head > .wal .g-head-main {
  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;
  height: var(--headH);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header .g-head > .wal .g-head-main .logo-box {
  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: 1.85rem;
}
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 .logo-box .img img.opacity-img {
  display: block;
}
header .g-head > .wal .g-head-main .logo-box .img img.color-img {
  display: none;
}
header .g-head > .wal .g-head-main .center-nav {
  height: 100%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  display: none;
}
header .g-head > .wal .g-head-main .center-nav.show {
  opacity: 1;
  visibility: visible;
  position: static;
  display: block;
}
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%;
  margin-left: -0.26rem;
}
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.32rem;
}
header .g-head > .wal .g-head-main .center-nav > ul > .nav-item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: 0.16rem;
  line-height: 0.24rem;
  height: var(--headH);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  opacity: 0.7;
  font-family: "fontFamily-M";
}
header .g-head > .wal .g-head-main .center-nav > ul > .nav-item > a:hover {
  opacity: 1;
}
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:hover > a {
  opacity: 1;
}
header .g-head > .wal .g-head-main .center-nav .nav__line {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  bottom: 0;
  left: 0;
  height: 0.02rem;
  width: 0.52rem;
  background-color: var(--sk-global-color);
  -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 .center-search {
  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;
  display: none;
}
header .g-head > .wal .g-head-main .center-search.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header .g-head > .wal .g-head-main .center-search .search-box {
  width: 6.56rem;
  height: 0.4rem;
  background: #F5F5F5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.2rem 0 0.15rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.04rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  letter-spacing: 0.01rem;
}
header .g-head > .wal .g-head-main .center-search .search-box .svg {
  width: 0.18rem;
}
header .g-head > .wal .g-head-main .center-search .search-box .svg path {
  fill: #999999;
}
header .g-head > .wal .g-head-main .center-search .search-box input {
  margin-left: 0.09rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.14rem;
  line-height: 0.28rem;
  letter-spacing: 0.01rem;
}
header .g-head > .wal .g-head-main .center-search .search-box input::-webkit-input-placeholder {
  color: #999999;
}
header .g-head > .wal .g-head-main .center-search .search-box input::-moz-placeholder {
  color: #999999;
}
header .g-head > .wal .g-head-main .center-search .search-box input:-ms-input-placeholder {
  color: #999999;
}
header .g-head > .wal .g-head-main .center-search .search-box input::placeholder {
  color: #999999;
}
header .g-head > .wal .g-head-main .center-search .search-box .search-a {
  color: #666666;
  font-size: 0.14rem;
  line-height: 0.28rem;
  letter-spacing: 0.01rem;
}
header .g-head > .wal .g-head-main .center-search .search-box .search-a:hover {
  color: #333333;
}
header .g-head > .wal .g-head-main .g-head-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  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 .search {
  position: relative;
  z-index: 1;
  margin-right: 0.4rem;
}
header .g-head > .wal .g-head-main .g-head-right .search .search-btn {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
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(--fcolor01);
}
header .g-head > .wal .g-head-main .g-head-right .search .search-btn .icon svg {
  width: 0.26rem;
  height: 0.26rem;
}
header .g-head > .wal .g-head-main .g-head-right .search .search-btn .icon svg path {
  fill: white;
}
header .g-head > .wal .g-head-main .g-head-right .search .search-btn .icon svg.search-svg {
  display: block;
}
header .g-head > .wal .g-head-main .g-head-right .search .search-btn .icon svg.clone-svg {
  width: 0.18rem;
  display: none;
}
header .g-head > .wal .g-head-main .g-head-right .-lang {
  position: relative;
}
header .g-head > .wal .g-head-main .g-head-right .-lang:hover .-layer {
  box-shadow: 0 0.1rem 0.13rem rgba(0, 0, 0, 0.05);
}
header .g-head > .wal .g-head-main .g-head-right .-lang .-front {
  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;
  color: var(--fcolor01);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .g-head > .wal .g-head-main .g-head-right .-lang .-front .-icon {
  width: 0.26rem;
  height: 0.26rem;
}
header .g-head > .wal .g-head-main .g-head-right .-lang .-front .-icon path {
  stroke: white;
}
header .g-head > .wal .g-head-main .g-head-right .-lang .-layer {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 0;
  padding-top: 0.19rem;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0.16rem;
  overflow: hidden;
}
header .g-head > .wal .g-head-main .g-head-right .-lang .-layer .-layer-wrapper {
  padding: 0.16rem 0.24rem 0.18rem 0.25rem;
  background-color: white;
  border-radius: 0.1rem;
}
header .g-head > .wal .g-head-main .g-head-right .-lang .-layer .-layer-wrapper ul {
  margin-top: -0.24rem;
}
header .g-head > .wal .g-head-main .g-head-right .-lang .-layer .-layer-wrapper ul li {
  margin-top: 0.24rem;
  text-align: center;
}
header .g-head > .wal .g-head-main .g-head-right .-lang .-layer .-layer-wrapper ul li a {
  white-space: nowrap;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: #999999;
  letter-spacing: 0.02rem;
}
header .g-head > .wal .g-head-main .g-head-right .-lang .-layer .-layer-wrapper ul li.on a, header .g-head > .wal .g-head-main .g-head-right .-lang .-layer .-layer-wrapper ul li:hover a {
  color: #333333;
}
header .g-head > .wal .g-head-main .g-head-right .-btn {
  margin-left: 0.4rem;
}
header .g-head > .wal .g-head-main .g-head-right .-btn .btn-box {
  height: 0.32rem;
  padding: 0 0.2rem;
  border: 0.01rem solid #FFFFFF;
  border-radius: 0.03rem;
  font-size: 0.14rem;
  line-height: 0.28rem;
  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;
  color: white;
  letter-spacing: 0.02rem;
}
header .g-head > .wal .g-head-main .g-head-right .-btn .btn-box:hover {
  border: 0.01rem solid var(--sk-global-color);
  color: white;
  background-color: var(--sk-global-color);
}
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;
  box-shadow: 0 0.1rem 0.13rem rgba(0, 0, 0, 0.05);
  background-color: white;
}
header .layer.layer__product .con-box {
  padding-top: 0.7rem;
  padding-bottom: 1.28rem;
  position: relative;
}
header .layer.layer__product .con-box .lick-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 4.4rem;
}
header .layer.layer__product .con-box .lick-list .link {
  width: 2.2rem;
  padding-right: 0.1rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  margin-bottom: 0.14rem;
  color: #999999;
  font-family: "fontFamily-M";
}
header .layer.layer__product .con-box .lick-list .link.active {
  color: #333333;
}
header .layer.layer__product .con-box .pro-img-list .pro-img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 2.25rem;
}
header .layer.layer__product .con-box .pro-img-list .pro-img.on {
  opacity: 1;
  visibility: visible;
}
header .layer.layer__solution .solution-list {
  padding-top: 0.71rem;
  padding-bottom: 0.28rem;
  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__solution .solution-list .solution-li {
  width: calc((100% - 1.2rem) / 5);
  margin-right: 0.3rem;
  padding-bottom: 0.24rem;
}
header .layer.layer__solution .solution-list .solution-li:nth-child(5n) {
  margin-right: 0;
}
header .layer.layer__solution .solution-list .solution-li .img-box {
  padding-top: 59%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.1rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header .layer.layer__solution .solution-list .solution-li .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
header .layer.layer__solution .solution-list .solution-li .text {
  margin-top: 0.19rem;
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #999999;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header .layer.layer__solution .solution-list .solution-li:hover .img-box img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
header .layer.layer__solution .solution-list .solution-li:hover .text {
  color: #333333;
}
header .layer.layer__service-support .service-support-box {
  padding-top: 0.12rem;
  padding-bottom: 0.43rem;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
header .layer.layer__service-support .service-support-box .link-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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
header .layer.layer__service-support .service-support-box .link-list .link {
  margin-bottom: 0.14rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #999999;
}
header .layer.layer__service-support .service-support-box .link-list .link:last-child {
  margin-bottom: 0;
}
header .layer.layer__service-support .service-support-box .link-list .link:hover {
  color: #333333;
}
header .layer.layer__service-support .service-support-box .link-list .link.on {
  color: #333333;
}
header.JsFixed {
  position: fixed;
  top: 0;
}
header.JsFixed .g-head .wal .g-head-main .center-nav .nav__line.show {
  opacity: 0;
}
@media screen and (min-width: 800px) {
  header._black {
    --fcolor01: #000000;
    --fcolor02: #666666;
    --fcolor03: #999999;
    position: fixed;
    top: 0;
  }
  header._black .g-head {
    background: transparent;
  }
  header._black .g-head > .wal .g-head-main .logo-box .img .opacity-img {
    display: none;
  }
  header._black .g-head > .wal .g-head-main .logo-box .img .color-img {
    display: block;
  }
  header._black .g-head .wal .g-head-main .center-nav > ul > .nav-item > a {
    color: #333333;
  }
  header._black .g-head .wal .g-head-main .center-nav .nav__line.show {
    opacity: 0;
  }
  header._black .g-head .wal .g-head-main .g-head-right .search .search-btn .search-svg-box .search-svg path {
    fill: #333333;
  }
  header._black .g-head .wal .g-head-main .g-head-right .-lang .-front .-icon path {
    stroke: #333333;
  }
  header._black .g-head .wal .g-head-main .g-head-right .-btn .btn-box {
    border: 0.01rem solid #333333;
    color: #333333;
  }
  header._black .g-head .wal .g-head-main .g-head-right .-btn .btn-box:hover {
    border: 0.01rem solid var(--sk-global-color);
    color: white;
  }
  header.isScroll, header.show-layer, header._hover, header.search-show {
    --totalH: .7rem;
    --headH: .7rem;
    --fcolor01: #000000;
    --fcolor02: #666666;
    --fcolor03: #999999;
  }
  header.isScroll .g-head, header.show-layer .g-head, header._hover .g-head, header.search-show .g-head {
    background: rgba(255, 255, 255, 0.85);
  }
  header.isScroll .g-head .wal .g-head-main .logo-box .img .opacity-img, header.show-layer .g-head .wal .g-head-main .logo-box .img .opacity-img, header._hover .g-head .wal .g-head-main .logo-box .img .opacity-img, header.search-show .g-head .wal .g-head-main .logo-box .img .opacity-img {
    display: none;
  }
  header.isScroll .g-head .wal .g-head-main .logo-box .img .color-img, header.show-layer .g-head .wal .g-head-main .logo-box .img .color-img, header._hover .g-head .wal .g-head-main .logo-box .img .color-img, header.search-show .g-head .wal .g-head-main .logo-box .img .color-img {
    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, header.search-show .g-head .wal .g-head-main .center-nav > ul > .nav-item.active > a {
    color: #333333;
  }
  header.isScroll .g-head .wal .g-head-main .center-nav > ul > .nav-item > a, header.show-layer .g-head .wal .g-head-main .center-nav > ul > .nav-item > a, header._hover .g-head .wal .g-head-main .center-nav > ul > .nav-item > a, header.search-show .g-head .wal .g-head-main .center-nav > ul > .nav-item > a {
    color: #333333;
  }
  header.isScroll .g-head .wal .g-head-main .center-nav .nav__line.show, header.show-layer .g-head .wal .g-head-main .center-nav .nav__line.show, header._hover .g-head .wal .g-head-main .center-nav .nav__line.show, header.search-show .g-head .wal .g-head-main .center-nav .nav__line.show {
    opacity: 1 !important;
  }
  header.isScroll .g-head .wal .g-head-main .g-head-right .-lang .-front .-icon path, header.show-layer .g-head .wal .g-head-main .g-head-right .-lang .-front .-icon path, header._hover .g-head .wal .g-head-main .g-head-right .-lang .-front .-icon path, header.search-show .g-head .wal .g-head-main .g-head-right .-lang .-front .-icon path {
    stroke: #333333;
  }
  header.isScroll .g-head .wal .g-head-main .g-head-right .search .search-btn .icon svg path, header.show-layer .g-head .wal .g-head-main .g-head-right .search .search-btn .icon svg path, header._hover .g-head .wal .g-head-main .g-head-right .search .search-btn .icon svg path, header.search-show .g-head .wal .g-head-main .g-head-right .search .search-btn .icon svg path {
    fill: #333333;
  }
  header.isScroll .g-head .wal .g-head-main .g-head-right .-btn .btn-box, header.show-layer .g-head .wal .g-head-main .g-head-right .-btn .btn-box, header._hover .g-head .wal .g-head-main .g-head-right .-btn .btn-box, header.search-show .g-head .wal .g-head-main .g-head-right .-btn .btn-box {
    border: 0.01rem solid #333333;
    color: #333333;
  }
  header.isScroll .g-head .wal .g-head-main .g-head-right .-btn .btn-box:hover, header.show-layer .g-head .wal .g-head-main .g-head-right .-btn .btn-box:hover, header._hover .g-head .wal .g-head-main .g-head-right .-btn .btn-box:hover, header.search-show .g-head .wal .g-head-main .g-head-right .-btn .btn-box:hover {
    border: 0.01rem solid var(--sk-global-color);
    color: white;
    background-color: var(--sk-global-color);
  }
  header.isScroll .g-head {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(0.3rem);
    backdrop-filter: blur(0.3rem);
  }
  header.isScroll .g-head > .wal .g-head-main .logo-box .img .opacity-img {
    display: none;
  }
  header.isScroll .g-head > .wal .g-head-main .logo-box .img .color-img {
    display: block;
  }
  header._hover .g-head, header.search-show .g-head {
    background: white;
  }
  header._hover .header-after, header.search-show .header-after {
    visibility: visible;
    opacity: 1;
  }
  header.search-show .g-head > .wal .g-head-main .g-head-right .search .search-btn .icon svg.search-svg {
    display: none;
  }
  header.search-show .g-head > .wal .g-head-main .g-head-right .search .search-btn .icon svg.clone-svg {
    display: block;
  }
}
header .header-after {
  visibility: hidden;
  opacity: 0;
  z-index: 96;
  -webkit-backdrop-filter: blur(0.15rem);
  backdrop-filter: blur(0.15rem);
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 800px) {
  header .g-head {
    position: fixed;
    top: 0;
    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 {
    padding: 0 0.3rem;
    position: relative;
    z-index: 150;
  }
  header .g-head > .wal .g-head-main {
    -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;
  }
  header .g-head > .wal .g-head-main .logo-box .img {
    width: 2.64rem;
    display: block;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box {
    margin-right: 0.4rem;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box .search-btn-box .icon .search-svg-box svg {
    width: 0.38rem;
    height: auto;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box .search-btn-box .icon .search-svg-box svg path {
    fill: white;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box .search-drop {
    position: fixed;
    width: 100vw;
    background-color: white;
    top: var(--headH);
    left: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box .search-drop .search-drop-box {
    padding: 0.45rem 0.4rem 0.46rem;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box .search-drop .search-drop-box .search-box-phone {
    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: 0 0.3rem;
    height: 0.8rem;
    background: #F5F5F5;
    border-radius: 0.08rem;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box .search-drop .search-drop-box .search-box-phone .svg {
    width: 0.38rem;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box .search-drop .search-drop-box .search-box-phone .svg path {
    fill: #999999;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box .search-drop .search-drop-box .search-box-phone input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 0.2rem;
    font-size: 0.24rem;
    letter-spacing: 2px;
  }
  header .g-head > .wal .g-head-main .g-head-right .search-box .search-drop .search-drop-box .search-box-phone .txt {
    font-size: 0.28rem;
    line-height: 0.28rem;
    letter-spacing: 2px;
  }
  header .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .img {
    width: 0.35rem;
  }
  header .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .img path {
    fill: white;
  }
  header .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .tree-img {
    display: block;
  }
  header .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .clone-img {
    display: none;
  }
  header .g-head .one-nav-box {
    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;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    top: 0;
    left: 0;
    -webkit-transform: translateX(120%);
    -ms-transform: translateX(120%);
    transform: translateX(120%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
  }
  header .g-head .one-nav-box.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  }
  header .g-head .one-nav-box .nav-list {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 2.91rem;
    padding: 0 0.8rem;
  }
  header .g-head .one-nav-box .nav-list .nav-li {
    margin-bottom: 0.6rem;
  }
  header .g-head .one-nav-box .nav-list .nav-li .nav {
    font-size: 0.4rem;
    line-height: 0.6rem;
    font-family: "fontFamily-B";
  }
  header .g-head .one-nav-box .nav-list .nav-li .child-box {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    top: 0;
    left: 0;
    -webkit-transform: translateX(120%);
    -ms-transform: translateX(120%);
    transform: translateX(120%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
  }
  header .g-head .one-nav-box .nav-list .nav-li .child-box.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  }
  header .g-head .one-nav-box .nav-list .nav-li .child-box .return-box {
    position: absolute;
    top: 1.8rem;
    left: 0.8rem;
    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;
  }
  header .g-head .one-nav-box .nav-list .nav-li .child-box .return-box img {
    height: 0.26rem;
  }
  header .g-head .one-nav-box .nav-list .nav-li .child-box .return-box .txt {
    margin-left: 0.14rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  header .g-head .one-nav-box .nav-list .nav-li .child-box .two-nav-list {
    margin-top: 2.91rem;
    padding: 0 0.8rem;
  }
  header .g-head .one-nav-box .nav-list .nav-li .child-box .two-nav-list .two-nav-li {
    margin-bottom: 0.6rem;
  }
  header .g-head .one-nav-box .nav-list .nav-li .child-box .two-nav-list .two-nav-li a {
    font-size: 0.4rem;
    line-height: 0.6rem;
    font-family: "fontFamily-B";
  }
  header .g-head .one-nav-box .switch-language {
    margin-top: auto;
    padding-bottom: 0.86rem;
    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;
  }
  header .g-head .one-nav-box .switch-language .switch-language-item a {
    font-size: 0.32rem;
    line-height: 0.48rem;
    font-family: "fontFamily-B";
    color: #999999;
  }
  header .g-head .one-nav-box .switch-language .switch-language-item.active a {
    color: #333333;
  }
  header .g-head .one-nav-box .switch-language .switch-language-line {
    margin: 0 0.28rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    font-family: "fontFamily-B";
    color: #999999;
  }
  header.isScroll .g-head, header.heaber-bg-white .g-head, header.search-show .g-head {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(0.3rem);
    backdrop-filter: blur(0.3rem);
  }
  header.isScroll .g-head > .wal .g-head-main .logo-box .img .opacity-img, header.heaber-bg-white .g-head > .wal .g-head-main .logo-box .img .opacity-img, header.search-show .g-head > .wal .g-head-main .logo-box .img .opacity-img {
    display: none;
  }
  header.isScroll .g-head > .wal .g-head-main .logo-box .img .color-img, header.heaber-bg-white .g-head > .wal .g-head-main .logo-box .img .color-img, header.search-show .g-head > .wal .g-head-main .logo-box .img .color-img {
    display: block;
  }
  header.isScroll .g-head > .wal .g-head-main .g-head-right .search-box .icon .search-svg-box .svg-ctx path, header.heaber-bg-white .g-head > .wal .g-head-main .g-head-right .search-box .icon .search-svg-box .svg-ctx path, header.search-show .g-head > .wal .g-head-main .g-head-right .search-box .icon .search-svg-box .svg-ctx path {
    fill: #333333;
  }
  header.isScroll .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .img path, header.heaber-bg-white .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .img path, header.search-show .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .img path {
    fill: #333333;
  }
  header.search-show .g-head {
    background: white;
  }
  header._black .g-head > .wal .g-head-main .logo-box .img .opacity-img {
    display: none;
  }
  header._black .g-head > .wal .g-head-main .logo-box .img .color-img {
    display: block;
  }
  header._black .g-head > .wal .g-head-main .g-head-right .search-box .search-btn-box .icon .search-svg-box .svg-ctx path {
    fill: #333333;
  }
  header._black .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .img path {
    fill: #333333;
  }
  header._click .g-head > .wal .g-head-main .logo-box .img .opacity-img {
    display: none;
  }
  header._click .g-head > .wal .g-head-main .logo-box .img .color-img {
    display: block;
  }
  header._click .g-head > .wal .g-head-main .g-head-right .search-box .search-btn-box .icon .search-svg-box .svg-ctx path {
    fill: #333333;
  }
  header._click .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .img path {
    fill: #333333;
  }
  header._click .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .tree-img {
    display: none;
  }
  header._click .g-head > .wal .g-head-main .g-head-right .munu .munu-box .munu-img .clone-img {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .index-page {
    overflow: hidden;
  }
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner.__v3 .__pp_con {
    padding-top: calc(1080 / 750 * 100%);
  }
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner.__v3 .__pp_con .__container {
    padding-top: 3.68rem;
  }
}
.index-page .__g_banner.__v3 .__pp_con .__container .__banner_title {
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner.__v3 .__pp_con .__container .__banner_title {
    padding: 0;
    line-height: 0.96rem;
  }
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner.__v3 .__pp_con .__container .watch-video-btn {
    margin-top: 0.41rem;
    min-width: 3.6rem;
    padding: 0.22rem 0.4rem;
    background: var(--sk-global-color);
    border-radius: 0.4rem;
    min-height: 0.8rem;
    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;
  }
  .index-page .__g_banner.__v3 .__pp_con .__container .watch-video-btn .watch-txt {
    letter-spacing: 0.04rem;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.36rem;
    margin-right: 0.1rem;
  }
  .index-page .__g_banner.__v3 .__pp_con .__container .watch-video-btn .paly {
    height: 0.23rem;
  }
}
.index-page .banner-swiper-container {
  position: relative;
}
.index-page .banner-swiper-container .pagination_custom {
  position: absolute;
  bottom: 0.32rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
.index-page .banner-swiper-container .pagination_custom .pagination_con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.06rem;
}
.index-page .banner-swiper-container .pagination_custom .pagination_con .pagination_custom_item {
  width: 0.12rem;
  height: 0.02rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  margin-right: 0.06rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .index-page .banner-swiper-container .pagination_custom .pagination_con .pagination_custom_item {
    width: 0.24rem;
    height: 0.04rem;
  }
}
.index-page .banner-swiper-container .pagination_custom .pagination_con .pagination_custom_item.active {
  width: 0.4rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-swiper-container .pagination_custom .pagination_con .pagination_custom_item.active {
    width: 0.8rem;
  }
}
.index-page .banner-swiper-container .pagination_custom .pagination_con .pagination_custom_item .progress_bar {
  background-color: var(--sk-global-color);
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.index-page .product-series {
  padding-top: 1.4rem;
  padding-bottom: 1.45rem;
}
@media screen and (max-width: 800px) {
  .index-page .product-series {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .index-page .product-series .--fz-h2 {
    letter-spacing: 0.05rem;
  }
}
.index-page .product-series .top-box {
  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;
}
@media screen and (max-width: 800px) {
  .index-page .product-series .top-box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.index-page .product-series .product-swiper-container {
  margin-top: 0.69rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .product-series .product-swiper-container {
    margin-top: 0.6rem;
  }
  .index-page .product-series .product-swiper-container .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.index-page .product-series .product-swiper-container .swiper-slide {
  width: 3.65rem;
  height: 5.18rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .product-series .product-swiper-container .swiper-slide {
    width: 100%;
    height: 8rem;
    margin-bottom: 0.4rem;
    border-radius: 0.2rem;
  }
  .index-page .product-series .product-swiper-container .swiper-slide:last-child {
    margin-bottom: 0;
  }
}
.index-page .product-series .product-swiper-container .swiper-slide .bg-box {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  height: 100%;
  width: 100%;
}
.index-page .product-series .product-swiper-container .swiper-slide .bg-box img {
  height: 100%;
  width: 100%;
}
.index-page .product-series .product-swiper-container .swiper-slide .con-txt {
  position: relative;
  text-align: center;
  padding: 0 0.2rem;
}
.index-page .product-series .product-swiper-container .swiper-slide .con-txt .tit {
  font-size: 0.24rem;
  letter-spacing: 0.02rem;
  margin-top: 0.5rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .index-page .product-series .product-swiper-container .swiper-slide .con-txt .tit {
    margin-top: 0.8rem;
    font-size: 0.4rem;
    line-height: 0.6rem;
    letter-spacing: 0.04rem;
  }
}
.index-page .product-series .product-swiper-container .swiper-slide .con-txt .tag-s {
  margin-top: 0.18rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
  letter-spacing: 0.01rem;
  white-space: pre;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .index-page .product-series .product-swiper-container .swiper-slide .con-txt .tag-s {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    letter-spacing: 0.02rem;
  }
}
@media screen and (min-width: 800px) {
  .index-page .product-series .product-swiper-container .swiper-slide:hover .bg-box img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.index-page .product-series .product-swiper-container .swiper-button .btn {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 0.05rem;
  border: 0.01rem solid #E4E4E4;
  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;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  visibility: hidden;
  opacity: 0;
}
.index-page .product-series .product-swiper-container .swiper-button .btn .svg {
  width: 0.06rem;
}
.index-page .product-series .product-swiper-container .swiper-button .btn .svg path {
  fill: white;
}
.index-page .product-series .product-swiper-container .swiper-button .btn.button-prev {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  margin-left: 0.2rem;
}
.index-page .product-series .product-swiper-container .swiper-button .btn.button-next {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  margin-right: 0.2rem;
}
.index-page .product-series .product-swiper-container .swiper-button .btn:hover {
  background: var(--sk-global-color);
  border: 0.01rem solid var(--sk-global-color);
}
.index-page .product-series .product-swiper-container .swiper-button .btn:hover .svg path {
  fill: #ffffff;
}
@media screen and (min-width: 800px) {
  .index-page .product-series .product-swiper-container:hover .swiper-button .btn {
    visibility: visible;
    opacity: 1;
  }
}
.index-page .product-series .btn-box {
  margin: 0.8rem auto;
  text-align: center;
}
.index-page .solution-box {
  padding-top: 0.36rem;
}
.index-page .solution-box .top-txt {
  width: 8.42rem;
  margin: 0 auto;
  font-size: 0.32rem;
  line-height: 0.48rem;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.03rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .top-txt {
    width: 100%;
    padding: 0 0.64rem 0 0.68rem;
    font-size: 0.4rem;
    line-height: 0.6rem;
    letter-spacing: 0.02rem;
  }
}
.index-page .solution-box .section_application_scenarios {
  margin-top: 1.48rem;
  height: 9.6rem;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .section_application_scenarios {
    margin-top: 1.53rem;
    height: 100vh;
  }
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container {
  height: 100%;
  width: 100%;
  position: relative;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list {
  height: 100%;
  width: 100%;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li {
  height: 100%;
  width: 100%;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li.show {
  opacity: 1;
  z-index: 10;
  visibility: visible;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li .bg-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -webkit-clip-path: polygon(15% 15%, 84% 15%, 84% 84%, 15% 83%);
  clip-path: polygon(15% 15%, 84% 15%, 84% 84%, 15% 83%);
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li .bg-img {
    -webkit-clip-path: none;
    clip-path: none;
  }
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li .bg-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li .title {
  color: #FFFFFF;
  padding-top: 1.49rem;
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li .title {
    padding-top: 1.6rem;
    letter-spacing: 5px;
  }
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li .context {
  width: 70%;
  margin: 0.24rem auto 0;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li .context {
    margin: 0.4rem auto 0;
    width: calc(100vw - 0.8rem);
    text-align: justify;
  }
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .solution-list .solution-li .btn-box {
  margin: 0.48rem auto;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper {
  position: absolute;
  z-index: 20;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper {
    bottom: 0.4rem;
  }
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li {
  width: calc((100% - 0.8rem) / 5);
  height: 1.23rem;
  background: rgba(100, 100, 100, 0.2);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  border-radius: 0.06rem;
  padding: 0.16rem 0.2rem 0.18rem 0.2rem;
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  margin-right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li {
    width: 5.2rem;
    margin-right: 0;
    height: 2.2rem;
    border-radius: 0.1rem;
    padding: 0.31rem 0.3rem 0.35rem;
  }
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li:last-child {
  margin-right: 0;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li .icon-box {
  width: 0.44rem;
  height: 0.44rem;
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li .icon-box {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li .icon-box .svg {
  height: 100%;
  width: 100%;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li .icon-box .svg path {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  fill: rgba(255, 255, 255, 0.6);
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li .txt {
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li .txt {
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 0.03rem;
  }
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0.01rem;
  background-color: var(--sk-global-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li::after {
    height: 0.02rem;
  }
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li.swiper-slide-active .icon-box .svg path {
  fill: white;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li.swiper-slide-active .txt {
  color: #fff;
}
.index-page .solution-box .section_application_scenarios .application_scenarios-container .card-list-swiper .card-list .card-li.swiper-slide-active::after {
  width: 100%;
}
.index-page .about-guohong {
  padding-top: 1.4rem;
  padding-bottom: 1.17rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.index-page .about-guohong .flex-box {
  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) {
  .index-page .about-guohong .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.index-page .about-guohong .flex-box .left-box {
  width: 5.42rem;
  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) {
  .index-page .about-guohong .flex-box .left-box {
    width: 100%;
  }
}
.index-page .about-guohong .flex-box .left-box .top-box .title {
  margin-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong .flex-box .left-box .top-box .title {
    margin-top: 0;
  }
}
.index-page .about-guohong .flex-box .left-box .top-box .txt {
  margin-top: 0.28rem;
  text-indent: 2em;
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong .flex-box .left-box .top-box .txt {
    margin-top: 0.32rem;
  }
}
.index-page .about-guohong .flex-box .left-box .top-box .btn-box {
  margin-top: 0.48rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong .flex-box .left-box .top-box .btn-box {
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong .flex-box .left-box .num-bottom {
    margin-top: 0.72rem;
  }
}
.index-page .about-guohong .flex-box .left-box .num-bottom .cell-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.01rem solid #D3D3D3;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.index-page .about-guohong .flex-box .left-box .num-bottom .cell-box .cell-li {
  width: 1.22rem;
  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;
  padding-bottom: 0.4rem;
  -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;
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong .flex-box .left-box .num-bottom .cell-box .cell-li {
    margin-top: 0.52rem;
    padding-bottom: 0.51rem;
    min-width: 3.1rem;
  }
}
.index-page .about-guohong .flex-box .left-box .num-bottom .cell-box .cell-li .num {
  font-size: 0.36rem;
  line-height: 0.44rem;
  font-family: "fontFamily-TM";
  color: var(--sk-global-color);
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong .flex-box .left-box .num-bottom .cell-box .cell-li .num {
    font-size: 0.64rem;
    line-height: 0.75rem;
  }
}
.index-page .about-guohong .flex-box .left-box .num-bottom .cell-box .cell-li .num .count-to {
  white-space: nowrap;
}
.index-page .about-guohong .flex-box .left-box .num-bottom .cell-box .cell-li .num .unit {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: "fontFamily-R";
  display: inline-block;
  margin-left: 0.08rem;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong .flex-box .left-box .num-bottom .cell-box .cell-li .num .unit {
    margin-left: 0.14rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
}
.index-page .about-guohong .flex-box .left-box .num-bottom .cell-box .cell-li .label {
  font-size: 0.18rem;
  line-height: 0.21rem;
  margin-top: 0.07rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong .flex-box .left-box .num-bottom .cell-box .cell-li .label {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin-top: 0.16rem;
  }
}
.index-page .about-guohong .flex-box .rigth-box {
  width: 8.78rem;
  height: 8.06rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .about-guohong .flex-box .rigth-box {
    width: 100%;
    height: 6.15rem;
    margin-top: 1rem;
    border-radius: 0.2rem;
  }
}
.index-page .about-guohong .flex-box .rigth-box img {
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .index-page .about-guohong .flex-box .rigth-box:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.index-page .real-time-info {
  padding-top: 1.4rem;
  padding-bottom: 1.17rem;
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info {
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.index-page .real-time-info .top-tit {
  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) {
  .index-page .real-time-info .top-tit {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.index-page .real-time-info .real-time-list {
  margin-top: 0.58rem;
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info .real-time-list {
    overflow: hidden;
  }
}
.index-page .real-time-info .real-time-list .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info .real-time-list .swiper-wrapper {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide {
  width: calc((100% - 0.42rem) / 3);
  margin-right: 0.21rem;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #F6F6F6;
}
.index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide {
    width: 100%;
    margin-right: 0;
    border-radius: 0.2rem;
  }
}
.index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .img-box {
  height: 2.77rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .img-box {
    padding-top: calc(377 / 670 * 100%);
    position: relative;
  }
}
.index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .img-box img {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .img-box img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .card-box {
  padding: 0.35rem 0.3rem 0.45rem;
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .card-box {
    padding: 0.47rem 0.35rem 0.54rem 0.41rem;
  }
}
.index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .card-box .name {
  font-family: "fontFamily-M";
  height: 0.6rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  letter-spacing: 0.02rem;
  display: -webkit-box;
  /* 使用弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 内容垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示 2 行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 超出部分显示省略号 */
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .card-box .name {
    font-size: 0.36rem;
    line-height: 0.54rem;
    height: 1.08rem;
    letter-spacing: 0.03rem;
  }
}
.index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .card-box .date {
  margin-top: 0.23rem;
  color: #999999;
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide .card-box .date {
    margin-top: 0.25rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    letter-spacing: 0.02rem;
  }
}
@media screen and (min-width: 800px) {
  .index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide:hover .img-box img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .index-page .real-time-info .real-time-list .swiper-wrapper .swiper-slide:hover .card-box .name {
    color: var(--sk-global-color);
  }
}
.index-page .real-time-info .real-time-list .swiper-pagination {
  margin-top: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.index-page .real-time-info .real-time-list .swiper-pagination .swiper-pagination-bullet {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  margin-right: 0.1rem;
  background: #E4E4E4;
  opacity: 1;
}
.index-page .real-time-info .real-time-list .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.index-page .real-time-info .real-time-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .index-page .real-time-info .btn-box {
    margin: 1.76rem auto 0;
    text-align: center;
  }
}
.index-page .contact-us {
  padding-top: 0.23rem;
  padding-bottom: 1.45rem;
}
@media screen and (max-width: 800px) {
  .index-page .contact-us {
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.index-page .contact-us .link-list {
  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) {
  .index-page .contact-us .link-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.index-page .contact-us .link-list .link-box {
  width: 2.54rem;
  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;
}
@media screen and (max-width: 800px) {
  .index-page .contact-us .link-list .link-box {
    width: 3rem;
    margin-bottom: 1rem;
  }
}
.index-page .contact-us .link-list .link-box img {
  height: 0.5rem;
}
@media screen and (max-width: 800px) {
  .index-page .contact-us .link-list .link-box img {
    height: 0.8rem;
  }
}
.index-page .contact-us .link-list .link-box .con-txt {
  margin-top: 0.36rem;
  text-align: center;
}
.index-page .contact-us .link-list .link-box .con-txt .tit {
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .index-page .contact-us .link-list .link-box .con-txt .tit {
    font-size: 0.36rem;
    line-height: 0.54rem;
  }
}
.index-page .contact-us .link-list .link-box .con-txt .txt {
  margin: 0.13rem auto;
  width: 1.82rem;
  color: #999999;
  font-size: 0.14rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .index-page .contact-us .link-list .link-box .con-txt .txt {
    margin: 0.24rem auto;
    width: 3rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
}
.index-page .contact-us .card-box {
  margin-top: 1.05rem;
  height: 2.8rem;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .contact-us .card-box {
    margin-top: 0.2rem;
    height: 8.4rem;
    border-radius: 0.2rem;
  }
}
.index-page .contact-us .card-box .bg-img {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.index-page .contact-us .card-box .card-con {
  padding: 0 0.6rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -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) {
  .index-page .contact-us .card-box .card-con {
    -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;
    padding: 1.38rem 0.81rem;
  }
  .index-page .contact-us .card-box .card-con .hry__btn {
    margin-top: 0.6rem;
  }
}
.index-page .contact-us .card-box .card-con .card-txt {
  width: 4.3rem;
  font-size: 0.28rem;
  line-height: 0.42rem;
  letter-spacing: 0.02rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .index-page .contact-us .card-box .card-con .card-txt {
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.6rem;
    text-align: center;
    letter-spacing: 0.04rem;
  }
}

@media screen and (max-width: 800px) {
  .about-us-page {
    overflow: hidden;
  }
}
@media screen and (max-width: 800px) {
  .about-us-page .__g_banner.__v2 .__pp_con {
    padding-top: calc(1080 / 750 * 100%);
  }
}
@media screen and (max-width: 800px) {
  .about-us-page .__g_banner.__v2 .__pp_con .__container {
    padding-top: 3.68rem;
  }
}
.about-us-page .__g_banner.__v2 .__pp_con .__container .__banner_title {
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .__g_banner.__v2 .__pp_con .__container .__banner_title {
    padding: 0;
    line-height: 0.96rem;
  }
}
@media screen and (max-width: 800px) {
  .about-us-page .__g_banner.__v2 .__pp_con .__container .watch-video-btn {
    margin-top: 0.41rem;
    min-width: 3.6rem;
    padding: 0.22rem 0.4rem;
    background: var(--sk-global-color);
    border-radius: 0.4rem;
    min-height: 0.8rem;
    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;
  }
  .about-us-page .__g_banner.__v2 .__pp_con .__container .watch-video-btn .watch-txt {
    letter-spacing: 0.04rem;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.36rem;
    margin-right: 0.1rem;
  }
  .about-us-page .__g_banner.__v2 .__pp_con .__container .watch-video-btn .paly {
    height: 0.23rem;
  }
}
.about-us-page .data-info {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info {
    padding-top: 1.98rem;
    padding-bottom: 2rem;
  }
}
.about-us-page .data-info .info-flex-box {
  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) {
  .about-us-page .data-info .info-flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about-us-page .data-info .info-flex-box .left-box .tit {
  color: rgba(0, 0, 0, 0.3);
}
.about-us-page .data-info .info-flex-box .left-box .video-img {
  width: 7.2rem;
  height: 4.8rem;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .info-flex-box .left-box .video-img {
    width: 100%;
    margin-top: 0.6rem;
    height: 4.17rem;
    border-radius: 0.2rem;
  }
}
.about-us-page .data-info .info-flex-box .left-box .video-img .video-img-play {
  height: 100%;
  width: 100%;
  display: none;
}
.about-us-page .data-info .info-flex-box .left-box .video-img .video-img-play.show {
  display: block;
}
.about-us-page .data-info .info-flex-box .left-box .video-img .video-img-play .bg-img {
  height: 100%;
  width: 100%;
}
.about-us-page .data-info .info-flex-box .left-box .video-img .video-img-play .play-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 0.48rem;
  border-radius: 0.24rem;
  background: var(--sk-global-color);
  padding: 0 0.3rem;
  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.28rem;
  color: white;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .info-flex-box .left-box .video-img .video-img-play .play-img {
    height: 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
    letter-spacing: 0.04rem;
  }
}
.about-us-page .data-info .info-flex-box .left-box .video-img .video-img-play .play-img .p {
  margin-right: 0.1rem;
}
.about-us-page .data-info .info-flex-box .left-box .video-img .video-img-play .play-img .img {
  height: 0.1rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .info-flex-box .left-box .video-img .video-img-play .play-img .img {
    height: 0.2rem;
  }
}
.about-us-page .data-info .info-flex-box .left-box .video-img video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}
.about-us-page .data-info .info-flex-box .left-box .video-img video.show {
  display: block;
}
.about-us-page .data-info .info-flex-box .rigth-box {
  width: 7rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .info-flex-box .rigth-box {
    width: 100%;
    font-size: 0.26rem;
    margin-top: 0.79rem;
  }
}
.about-us-page .data-info .info-flex-box .rigth-box .tit {
  color: rgba(0, 0, 0, 0.3);
}
.about-us-page .data-info .info-flex-box .rigth-box .txt {
  margin-top: 0.39rem;
}
.about-us-page .data-info .num-info-list {
  margin-top: 1.37rem;
  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) {
  .about-us-page .data-info .num-info-list {
    margin-top: 1.12rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
.about-us-page .data-info .num-info-list .num-item {
  min-width: 2.53rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .num-info-list .num-item {
    margin-bottom: 0.8rem;
  }
}
.about-us-page .data-info .num-info-list .num-item .num {
  font-size: 0.64rem;
  line-height: 0.78rem;
  color: var(--sk-global-color);
  font-family: "fontFamily-TM";
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .num-info-list .num-item .num {
    font-size: 0.72rem;
    line-height: 0.88rem;
  }
}
.about-us-page .data-info .num-info-list .num-item .label {
  margin-top: 0.1rem;
  font-size: 0.18rem;
  line-height: 0.27rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .num-info-list .num-item .label {
    margin-top: 0.24rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
}
.about-us-page .data-info .corporate-culture {
  margin-top: 1.78rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .corporate-culture {
    margin-top: 1.2rem;
  }
}
.about-us-page .data-info .corporate-culture .tit {
  text-align: center;
}
.about-us-page .data-info .corporate-culture .culture-card-list {
  margin-top: 0.48rem;
  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) {
  .about-us-page .data-info .corporate-culture .culture-card-list {
    margin-top: 0.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about-us-page .data-info .corporate-culture .culture-card-list .culture-card {
  width: calc((100% - 0.66rem) / 3);
  padding-top: calc((100% - 0.66rem) / 3);
  height: 0;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .corporate-culture .culture-card-list .culture-card {
    width: 100%;
    padding-top: 100%;
    margin-top: 0.4rem;
    border-radius: 0.2rem;
  }
  .about-us-page .data-info .corporate-culture .culture-card-list .culture-card:first-child {
    margin-top: 0;
  }
}
.about-us-page .data-info .corporate-culture .culture-card-list .culture-card .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.about-us-page .data-info .corporate-culture .culture-card-list .culture-card .card-con {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.4rem 0.53rem 0.4rem 0.4rem;
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .corporate-culture .culture-card-list .culture-card .card-con {
    padding: 0.6rem 0.4rem;
  }
}
.about-us-page .data-info .corporate-culture .culture-card-list .culture-card .card-con .name {
  font-size: 0.18rem;
  line-height: 0.26rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .corporate-culture .culture-card-list .culture-card .card-con .name {
    -webkit-flex-shrink: inherit;
    -ms-flex-negative: inherit;
    flex-shrink: inherit;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
}
.about-us-page .data-info .corporate-culture .culture-card-list .culture-card .card-con .txt {
  padding-top: 0.18rem;
  font-size: 0.24rem;
  line-height: 0.36rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "fontFamily-B";
  letter-spacing: 0.02rem;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .about-us-page .data-info .corporate-culture .culture-card-list .culture-card .card-con .txt {
    opacity: 1;
    visibility: visible;
    margin-top: 0.32rem;
    font-size: 0.36rem;
    line-height: 0.54rem;
    padding-top: 0;
  }
}
@media screen and (min-width: 800px) {
  .about-us-page .data-info .corporate-culture .culture-card-list .culture-card:hover .bg-img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.about-us-page .-history {
  overflow: hidden;
  position: relative;
  color: white;
}
.about-us-page .-history .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.about-us-page .-history .wal {
  padding-top: 1.41rem;
  padding-bottom: 1.07rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal {
    padding-top: 1.6rem;
    padding-bottom: 1.2rem;
  }
}
.about-us-page .-history .wal .tit {
  text-align: center;
}
.about-us-page .-history .wal .-body {
  margin-top: 0.57rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body {
    margin-top: 1.14rem;
  }
}
.about-us-page .-history .wal .-body .year-swiper {
  margin-right: -1rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .year-swiper {
    margin-right: 0;
  }
}
.about-us-page .-history .wal .-body .year-swiper .swiper-container {
  overflow: hidden;
  position: relative;
}
.about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 2.63rem;
  min-height: 4.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 0.2rem;
  color: var(--c);
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide .-year {
  font-size: 0.56rem;
  line-height: 0.68rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "fontFamily-TM";
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide .-year {
    font-size: 0.72rem;
    line-height: 0.88rem;
  }
}
.about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide .-text {
  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;
  margin-top: 0.25rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide .-text {
    margin-top: 0.36rem;
  }
}
.about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide .-text p {
  position: relative;
  font-size: 0.18rem;
  line-height: 0.36rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide .-text p {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
}
.about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide .-text p:last-child {
  margin-bottom: 0;
}
.about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .-year {
  color: white;
}
.about-us-page .-history .wal .-body .year-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .-text {
  color: white;
}
.about-us-page .-history .wal .-body .bottom-box {
  padding: 0 1.1rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .bottom-box {
    padding: 0;
    position: static;
  }
}
.about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn {
  position: absolute;
  bottom: 0;
  height: 0.42rem;
  width: 0.42rem;
  border-radius: 0.05rem;
  border: 0.01rem solid #FFFFFF;
  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;
}
.about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn {
    bottom: auto;
    top: calc(50% - 1.07rem);
    height: 0.72rem;
    width: 0.72rem;
    z-index: 20;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 0.02rem solid rgba(255, 255, 255, 0.5);
  }
}
.about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn svg {
  width: 0.07rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn svg {
    width: 0.14rem;
  }
}
.about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn path {
  fill: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn path {
    fill: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (min-width: 800px) {
  .about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn:hover {
    background: var(--sk-global-color);
    border: 0.01rem solid var(--sk-global-color);
  }
}
.about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn.prev {
  left: 0;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn.prev {
    left: 0.4rem;
  }
}
.about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn.next {
  right: 0;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .bottom-box .swiper-arrow .-circle-btn.next {
    right: 0.4rem;
  }
}
.about-us-page .-history .wal .-body .bottom-box .mark-year {
  width: 100%;
  overflow: hidden;
  margin: 1rem 0 0;
  padding: 0 0.32rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .-history .wal .-body .bottom-box .mark-year {
    margin: 3rem 0 0;
  }
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container {
  overflow: visible;
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul li {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-bottom: 0.4rem;
  width: 1.78rem;
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul li.active .-mark span {
  background-color: var(--sk-global-color);
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul li.on .-year {
  color: var(--sk-global-color);
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul li:first-child .-mark span {
  display: none;
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul li:first-child .-mark span:last-child {
  display: block;
  margin-left: auto;
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul li .-year {
  cursor: pointer;
  font-size: 0.18rem;
  line-height: 0.22rem;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "fontFamily-TM";
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul li .-mark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  -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;
  bottom: 0;
  left: 0;
  padding-left: 0.13rem;
  pointer-events: none;
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul li .-mark span {
  width: 0.01rem;
  height: 0.16rem;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-us-page .-history .wal .-body .bottom-box .mark-year .swiper-container ul li .-mark span:last-child {
  height: 0.31rem;
}
.about-us-page .-honors .wal {
  padding-top: 1.31rem;
  padding-bottom: 1.4rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .-honors .wal {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.about-us-page .-honors .wal .tit {
  text-align: center;
}
.about-us-page .-honors .wal .-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 6.14rem;
  margin-top: 0.6rem;
  border-radius: 0.2rem;
  overflow: hidden;
  background: #F5F5F5;
}
@media screen and (max-width: 800px) {
  .about-us-page .-honors .wal .-body {
    display: block;
    height: auto;
  }
}
.about-us-page .-honors .wal .-body .-left {
  width: 8.8rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .-honors .wal .-body .-left {
    width: 100%;
  }
}
.about-us-page .-honors .wal .-body .-left img {
  width: 100%;
  height: 100%;
}
.about-us-page .-honors .wal .-body .-list {
  cursor: -webkit-grab;
  cursor: grab;
  position: relative;
  padding: 0.91rem 0 0.91rem 0.27rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 800px) {
  .about-us-page .-honors .wal .-body .-list {
    padding: 1rem 0;
    height: 6.13rem;
  }
}
.about-us-page .-honors .wal .-body .-list .-list-inner {
  height: 100%;
}
.about-us-page .-honors .wal .-body .-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -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;
}
.about-us-page .-honors .wal .-body .-list ul li {
  font-family: "fontFamily-M";
  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-size: 0.28rem;
  height: auto;
  line-height: 0.42rem;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* 标准浏览器 */
}
@media screen and (max-width: 800px) {
  .about-us-page .-honors .wal .-body .-list ul li {
    font-size: 0.36rem;
    line-height: 0.54rem;
  }
}
.about-us-page .-honors .wal .-body .-list ul li.active span, .about-us-page .-honors .wal .-body .-list ul li.swiper-slide-active span {
  color: var(--sk-global-color);
}
.about-us-page .-honors .wal .-body .-list ul li span {
  color: var(--fcolor03);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  text-align: center;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .-honors .wal .-body .-list ul li span {
    letter-spacing: 0.03rem;
  }
}
.about-us-page .management-team {
  background: #F5F5F5;
  padding-top: 1.4rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team {
    padding-top: 2rem;
  }
}
.about-us-page .management-team .tit {
  text-align: center;
}
.about-us-page .management-team .team-list {
  margin-top: 0.48rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list {
    margin-top: 0.6rem;
  }
}
.about-us-page .management-team .team-list .swiper-wrapper .swiper-slide {
  border-radius: 0.1rem;
  background: #FFFFFF;
  padding: 0.37rem 0.3rem 0.3rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .swiper-wrapper .swiper-slide {
    width: 5.2rem;
    border-radius: 0.2rem;
    padding: 0.61rem 0.4rem 0.4rem;
  }
}
.about-us-page .management-team .team-list .swiper-wrapper .swiper-slide .name {
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-B";
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .swiper-wrapper .swiper-slide .name {
    font-size: 0.36rem;
    line-height: 0.54rem;
    letter-spacing: 0.03rem;
  }
}
.about-us-page .management-team .team-list .swiper-wrapper .swiper-slide .post {
  margin-top: 0.09rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .swiper-wrapper .swiper-slide .post {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.24rem;
  }
}
.about-us-page .management-team .team-list .swiper-wrapper .swiper-slide .img-box {
  margin-top: 1rem;
  height: 0;
  width: 100%;
  padding-top: 71.8%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .swiper-wrapper .swiper-slide .img-box {
    margin-top: 2rem;
  }
}
.about-us-page .management-team .team-list .swiper-wrapper .swiper-slide .img-box img {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.about-us-page .management-team .team-list .pagination-btn {
  margin-top: 0.4rem;
  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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .pagination-btn {
    margin-top: 0.8rem;
  }
}
.about-us-page .management-team .team-list .pagination-btn .swiper-pagination {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 0.01rem;
  background: #D3D3D3;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .pagination-btn .swiper-pagination {
    height: 0.02rem;
  }
}
.about-us-page .management-team .team-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 0.04rem;
    margin-top: -0.01rem;
  }
}
.about-us-page .management-team .team-list .pagination-btn .swiper-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .pagination-btn .swiper-arrow {
    margin-left: 0.36rem;
  }
}
.about-us-page .management-team .team-list .pagination-btn .swiper-arrow .-circle-btn {
  height: 0.42rem;
  width: 0.42rem;
  border-radius: 0.05rem;
  border: 0.01rem solid #E4E4E4;
  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;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .pagination-btn .swiper-arrow .-circle-btn {
    height: 0.72rem;
    width: 0.72rem;
  }
}
.about-us-page .management-team .team-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
  height: 0.12rem;
  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;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
    height: 0.2rem;
  }
}
.about-us-page .management-team .team-list .pagination-btn .swiper-arrow .-circle-btn path {
  fill: #999999;
}
@media screen and (min-width: 800px) {
  .about-us-page .management-team .team-list .pagination-btn .swiper-arrow .-circle-btn:hover {
    background: var(--sk-global-color);
    border: 0.01rem solid var(--sk-global-color);
  }
  .about-us-page .management-team .team-list .pagination-btn .swiper-arrow .-circle-btn:hover path {
    fill: white;
  }
}
.about-us-page .management-team .team-list .pagination-btn .swiper-arrow .-circle-btn.prev {
  margin-right: 0.15rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .management-team .team-list .pagination-btn .swiper-arrow .-circle-btn.prev {
    margin-right: 0.2rem;
  }
}
.about-us-page .cooperative-partner {
  padding-top: 1.6rem;
  padding-bottom: 1.4rem;
  background: #F5F5F5;
}
@media screen and (max-width: 800px) {
  .about-us-page .cooperative-partner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.about-us-page .cooperative-partner .tit-info {
  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) {
  .about-us-page .cooperative-partner .tit-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about-us-page .cooperative-partner .tit-info .tit {
  width: 6.56rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .cooperative-partner .tit-info .tit {
    width: 100%;
  }
}
.about-us-page .cooperative-partner .tit-info .txt {
  width: 6.23rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .cooperative-partner .tit-info .txt {
    width: 100%;
    margin-top: 0.32rem;
  }
}
.about-us-page .cooperative-partner .partner-swiper {
  margin-top: 0.57rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .about-us-page .cooperative-partner .partner-swiper {
    margin-top: 1.08rem;
  }
}
.about-us-page .cooperative-partner .partner-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.about-us-page .cooperative-partner .partner-swiper .swiper-wrapper .swiper-slide {
  border: 0.01rem solid #D3D3D3;
  border-radius: 0.1rem;
  padding: 0.2rem;
  height: 1.75rem;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 800px) {
  .about-us-page .cooperative-partner .partner-swiper .swiper-wrapper .swiper-slide {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.about-us-page .cooperative-partner .partner-swiper .swiper-wrapper .swiper-slide .logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}
@media screen and (max-width: 800px) {
  .about-us-page .cooperative-partner .partner-swiper .swiper-wrapper .swiper-slide .logo-img {
    max-width: 70%;
    max-height: 70%;
  }
}
.about-us-page .join-us {
  height: 6.4rem;
  position: relative;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .about-us-page .join-us {
    height: 9.6rem;
  }
}
.about-us-page .join-us .bg-img {
  height: 100%;
  width: 100%;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.about-us-page .join-us .con-box {
  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: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .about-us-page .join-us .con-box {
    padding-top: 1.6rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.about-us-page .join-us .con-box .txt {
  margin-top: 0.28rem;
  width: 4rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-us-page .join-us .con-box .txt {
    width: 100%;
    margin-top: 0.32rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
  }
}
.about-us-page .join-us .con-box .hry__btn {
  margin-top: 0.59rem;
}

.video-pop-up-box {
  position: fixed;
  z-index: -10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  background: black;
  height: 0;
  width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.16rem;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .video-pop-up-box {
    font-size: 0.28rem;
    line-height: 1.7;
  }
}
.video-pop-up-box.show {
  visibility: visible;
  z-index: 500;
  height: 100vh;
  width: 100vw;
  opacity: 1;
}
.video-pop-up-box .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 7.28rem;
  max-height: 7.28rem;
}
@media screen and (max-width: 800px) {
  .video-pop-up-box .video-box {
    max-width: 100%;
    max-height: 100%;
  }
}
.video-pop-up-box .video-box .clone-box {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -0.08rem;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.video-pop-up-box .video-box video {
  width: 100%;
}

@media screen and (max-width: 800px) {
  .product-details-page {
    overflow: hidden;
  }
}
.product-details-page .-top-section {
  height: 100vh;
  position: relative;
  top: 0;
  width: 100%;
  overflow: hidden;
}
.product-details-page .-top-section .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.product-details-page .-top-section .-tit {
  text-align: center;
  position: absolute;
  top: 1.99rem;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  opacity: 0;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .product-details-page .-top-section .-tit {
    top: 3.6rem;
    width: 100%;
  }
}
.product-details-page .-top-section .-stacked-bottom,
.product-details-page .-top-section .-imgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.product-details-page .-top-section .-stacked-bottom {
  font-family: "fontFamily-TB";
  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-size: 3rem;
  line-height: 3.66rem;
  z-index: 5;
  padding: 0 0 1.04rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .-top-section .-stacked-bottom {
    font-size: 1.5rem;
    line-height: 1.83rem;
    padding: 0 0 2.19rem;
  }
}
.product-details-page .-top-section .-stacked-bottom span {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-details-page .-top-section .-imgs {
  position: absolute;
  top: 3.55rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
  height: auto;
}
@media screen and (max-width: 800px) {
  .product-details-page .-top-section .-imgs {
    top: auto;
    bottom: -2.84rem;
  }
}
.product-details-page .-top-section .-imgs .-bigImg-swiper {
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  height: 8.67rem;
}
.product-details-page .-top-section .-imgs .-bigImg-swiper img {
  height: 100%;
}
@media screen and (max-width: 800px) {
  .product-details-page .-top-section .-imgs .-bigImg-swiper {
    height: 10.16rem;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
.product-details-page .product-info-box {
  padding-top: 1.4rem;
  padding-bottom: 0.94rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-info-box {
    padding-top: 2rem;
    padding-bottom: 1.6rem;
  }
}
.product-details-page .product-info-box .flex-box {
  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) {
  .product-details-page .product-info-box .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product-details-page .product-info-box .flex-box .left-box {
  width: 5.8rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-info-box .flex-box .left-box {
    width: 100%;
  }
}
.product-details-page .product-info-box .flex-box .left-box .code {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.29rem;
  color: var(--sk-global-color);
  font-family: "fontFamily-TB";
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-info-box .flex-box .left-box .code {
    font-size: 0.36rem;
    line-height: 0.44rem;
    letter-spacing: 0.03rem;
  }
}
.product-details-page .product-info-box .flex-box .left-box .tit {
  margin-top: 0.2rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-info-box .flex-box .left-box .tit {
    margin-top: 0.24rem;
    font-family: "fontFamily-B";
    letter-spacing: 0.05rem;
  }
}
.product-details-page .product-info-box .flex-box .left-box .txt {
  margin-top: 0.24rem;
  line-height: 0.24rem;
  letter-spacing: 0.01rem;
  color: #333333;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-info-box .flex-box .left-box .txt {
    margin-top: 0.32rem;
    color: #666666;
    font-size: 0.26rem;
    line-height: 0.39rem;
    letter-spacing: normal;
  }
}
.product-details-page .product-info-box .flex-box .left-box .card-list {
  margin-top: 0.48rem;
  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 (max-width: 800px) {
  .product-details-page .product-info-box .flex-box .left-box .card-list {
    margin-top: 0.6rem;
  }
}
.product-details-page .product-info-box .flex-box .left-box .card-list img {
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-info-box .flex-box .left-box .card-list img {
    width: 0.72rem;
    height: 0.72rem;
    margin-right: 0.15rem;
    margin-bottom: 0.15rem;
  }
}
.product-details-page .product-info-box .flex-box .rigth-box {
  width: 7.6rem;
  height: 4.39rem;
  background: -webkit-radial-gradient(17% 76%, 0% 43%, #FFFFFF 0%, #E8E8E8 100%);
  background: radial-gradient(0% 43% at 17% 76%, #FFFFFF 0%, #E8E8E8 100%);
  border-radius: 0.1rem;
  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 (max-width: 800px) {
  .product-details-page .product-info-box .flex-box .rigth-box {
    margin-top: 0.65rem;
    width: 100%;
    height: 3.87rem;
    border-radius: 0.2rem;
  }
}
.product-details-page .product-info-box .flex-box .rigth-box img {
  max-width: 80%;
  max-height: 80%;
}
@media screen and (min-width: 800px) {
  .product-details-page .product-info-box .flex-box .rigth-box:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.product-details-page .nav-list-box .nav-list {
  border-bottom: 0.01rem solid #D3D3D3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 800px) {
  .product-details-page .nav-list-box .nav-list {
    border-bottom: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.product-details-page .nav-list-box .nav-list .nav-li {
  color: #999999;
  font-size: 0.2rem;
  line-height: 0.23rem;
  cursor: pointer;
  font-family: "fontFamily-M";
  padding: 0 0.4rem 0.2rem;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .nav-list-box .nav-list .nav-li {
    padding: 0 0.43rem 0.19rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 0.03rem;
  }
}
@media screen and (min-width: 800px) {
  .product-details-page .nav-list-box .nav-list .nav-li:first-child {
    padding-left: 0;
  }
}
.product-details-page .nav-list-box .nav-list .nav-li.on {
  color: #333333;
}
@media screen and (min-width: 800px) {
  .product-details-page .nav-list-box .nav-list .nav-li:hover {
    color: #333333;
  }
}
.product-details-page .nav-list-box .nav-list .nav__line {
  position: absolute;
  bottom: -0.01rem;
  height: 0.02rem;
  background-color: var(--sk-global-color);
  width: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .product-details-page .nav-list-box .nav-list .nav__line {
    height: 0.03rem;
  }
}
.product-details-page .specifications {
  padding-top: 0.9rem;
  padding-bottom: 1.4rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications {
    padding-bottom: 0.8rem;
    padding-bottom: 2rem;
  }
}
.product-details-page .specifications.show {
  display: block;
}
.product-details-page .specifications .flex-box {
  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) {
  .product-details-page .specifications .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product-details-page .specifications .flex-box .left-box {
  width: 5.8rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .left-box {
    width: 100%;
  }
}
.product-details-page .specifications .flex-box .left-box .name {
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .left-box .name {
    font-size: 0.48rem;
    line-height: 0.72rem;
    letter-spacing: 0.04rem;
  }
}
.product-details-page .specifications .flex-box .left-box .img-card {
  margin-top: 0.37rem;
  border: 0.01rem solid #D3D3D3;
  height: 6.8rem;
  border-radius: 0.1rem;
  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;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .left-box .img-card {
    margin-top: 0.48rem;
    height: 0;
    padding-top: 98.5%;
    border: 0.02rem solid #D3D3D3;
    position: relative;
    border-radius: 0.2rem;
  }
}
.product-details-page .specifications .flex-box .left-box .img-card img {
  max-width: 90%;
  max-height: 90%;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .left-box .img-card img {
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 800px) {
  .product-details-page .specifications .flex-box .left-box .img-card:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.product-details-page .specifications .flex-box .rigth-box {
  width: 7.6rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .rigth-box {
    width: 100%;
    margin-top: 1rem;
  }
}
.product-details-page .specifications .flex-box .rigth-box .name {
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .rigth-box .name {
    font-size: 0.48rem;
    line-height: 0.72rem;
    letter-spacing: 0.04rem;
  }
}
.product-details-page .specifications .flex-box .rigth-box .table-box {
  margin-top: 0.16rem;
  position: relative;
  height: 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .rigth-box .table-box {
    margin-top: 0.48rem;
    height: 15.6rem;
  }
}
.product-details-page .specifications .flex-box .rigth-box .table-box .table .cell-box {
  padding: 0.12rem 0;
  border-bottom: 0.01rem solid #D3D3D3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .rigth-box .table-box .table .cell-box {
    padding: 0.3rem 0;
    font-size: 0.26rem;
    line-height: 0.39rem;
    letter-spacing: 0.02rem;
  }
  .product-details-page .specifications .flex-box .rigth-box .table-box .table .cell-box:first-child {
    border-top: 0.01rem solid #D3D3D3;
  }
}
.product-details-page .specifications .flex-box .rigth-box .table-box .table .cell-box .label {
  width: 4.4rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .rigth-box .table-box .table .cell-box .label {
    width: 56.7%;
  }
}
.product-details-page .specifications .flex-box .rigth-box .table-box .table .cell-box .value {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.product-details-page .specifications .flex-box .rigth-box .table-box .see-more {
  position: absolute;
  width: 100%;
  height: 1.53rem;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFFFFF 73%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 73%);
  bottom: 0;
  left: 0;
  display: none;
}
.product-details-page .specifications .flex-box .rigth-box .table-box .see-more.show {
  display: block;
}
.product-details-page .specifications .flex-box .rigth-box .table-box .see-more .more-box {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 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;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--sk-global-color);
  gap: 0.07rem;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .rigth-box .table-box .see-more .more-box {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 0.26rem;
    line-height: 0.39rem;
    gap: 0.1rem;
  }
}
.product-details-page .specifications .flex-box .rigth-box .table-box .see-more .more-box img {
  width: 0.12rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .specifications .flex-box .rigth-box .table-box .see-more .more-box img {
    width: 0.24rem;
  }
}
.product-details-page .product-bottom {
  min-height: 3.2rem;
  padding-top: 0.6rem;
  background: var(--sk-global-color-02);
}
@media screen and (max-width: 800px) {
  .product-details-page .product-bottom {
    height: auto;
    padding-top: 1.63rem;
    padding-bottom: 1.34rem;
  }
}
.product-details-page .product-bottom .flex-box {
  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: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-bottom .flex-box {
    -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;
  }
}
.product-details-page .product-bottom .flex-box .left-box {
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-bottom .flex-box .left-box {
    text-align: center;
  }
}
.product-details-page .product-bottom .flex-box .left-box .tit {
  font-size: 0.48rem;
  line-height: 0.64rem;
  font-family: "fontFamily-B";
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-bottom .flex-box .left-box .tit {
    font-size: 0.56rem;
    line-height: 0.84rem;
    letter-spacing: 0.05rem;
  }
}
.product-details-page .product-bottom .flex-box .left-box .code {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.29rem;
  font-family: "fontFamily-TB";
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-bottom .flex-box .left-box .code {
    margin-top: 0.14rem;
    font-size: 0.36rem;
    line-height: 0.44rem;
    letter-spacing: 0.03rem;
  }
}
.product-details-page .product-bottom .flex-box .rigth-box {
  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 (max-width: 800px) {
  .product-details-page .product-bottom .flex-box .rigth-box {
    margin-top: 1.77rem;
    width: 100%;
  }
}
.product-details-page .product-bottom .flex-box .rigth-box .hry__btn {
  margin-bottom: 0.2rem;
}
.product-details-page .product-bottom .flex-box .pro-img {
  width: 5.2rem;
  max-height: 5.2rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .product-bottom .flex-box .pro-img {
    width: 5.87rem;
    max-width: 100%;
    margin-top: 1.42rem;
  }
}
.product-details-page .cutting-parameters {
  padding-top: 0.9rem;
  padding-bottom: 1.4rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .product-details-page .cutting-parameters {
    padding-top: 0.8rem;
    padding-bottom: 2rem;
  }
}
.product-details-page .cutting-parameters.show {
  display: block;
}
.product-details-page .cutting-parameters .name {
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .cutting-parameters .name {
    font-size: 0.56rem;
    line-height: 0.84rem;
    font-family: "fontFamily-B";
    letter-spacing: 0.05rem;
  }
}
.product-details-page .cutting-parameters .table-source {
  margin-top: 0.36rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .cutting-parameters .table-source {
    margin-top: 0.52rem;
  }
}
.product-details-page .cutting-parameters .table-source .box-item {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .cutting-parameters .table-source .box-item {
    margin-bottom: 1.2rem;
  }
}
.product-details-page .cutting-parameters .table-source .box-item:last-child {
  margin-bottom: 0.36rem;
}
.product-details-page .cutting-parameters .table-source .box-item:first-child {
  margin-top: 0;
}
.product-details-page .cutting-parameters .table-source .box-item .label {
  font-size: 0.24rem;
  line-height: 0.28rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .cutting-parameters .table-source .box-item .label {
    font-size: 0.48rem;
    line-height: 0.72rem;
    letter-spacing: 0.04rem;
  }
}
.product-details-page .cutting-parameters .table-source .box-item .table-box {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .cutting-parameters .table-source .box-item .table-box {
    margin-top: 0.48rem;
    width: calc(100vw - 0.4rem);
    padding-right: 0.4rem;
    overflow-x: scroll;
    padding-bottom: 0.2rem;
    scrollbar-width: thin;
  }
  .product-details-page .cutting-parameters .table-source .box-item .table-box::-webkit-scrollbar {
    width: 0.18rem;
  }
}
.product-details-page .cutting-parameters .table-source .box-item .table-box table {
  text-align: center;
  width: 100%;
  background: #ECECEC;
  border-radius: 0.1rem;
  border-collapse: collapse;
}
@media screen and (max-width: 800px) {
  .product-details-page .cutting-parameters .table-source .box-item .table-box table {
    width: 26rem;
    border-radius: 0.2rem;
  }
}
.product-details-page .cutting-parameters .table-source .box-item .table-box table thead {
  font-size: 0.18rem;
  line-height: 0.27rem;
  font-family: "fontFamily-M";
}
.product-details-page .cutting-parameters .table-source .box-item .table-box table thead th {
  font-weight: initial;
  font-size: 0.18rem;
  line-height: 0.27rem;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .cutting-parameters .table-source .box-item .table-box table thead th {
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 0.03rem;
  }
}
.product-details-page .cutting-parameters .table-source .box-item .table-box table td,
.product-details-page .cutting-parameters .table-source .box-item .table-box table th {
  border: none;
  border-bottom: 0.03rem solid white;
  padding: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .cutting-parameters .table-source .box-item .table-box table td,
  .product-details-page .cutting-parameters .table-source .box-item .table-box table th {
    padding: 0.3rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    line-height: 0.3rem;
    letter-spacing: 0.02rem;
  }
}
.product-details-page .cutting-parameters .table-source .box-item .table-box table tr:last-child td {
  border-bottom: none;
}
.product-details-page .application-cases {
  padding-top: 0.9rem;
  padding-bottom: 1.4rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases {
    padding-top: 0.8rem;
    padding-bottom: 2rem;
  }
}
.product-details-page .application-cases.show {
  display: block;
}
.product-details-page .application-cases .case-box .name {
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .name {
    font-family: "fontFamily-B";
    font-size: 0.56rem;
    line-height: 0.84rem;
    letter-spacing: 0.05rem;
  }
}
.product-details-page .application-cases .case-box .processing-path {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .processing-path {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product-details-page .application-cases .case-box .processing-path .processing-path-item {
  margin-top: 0.36rem;
  margin-right: 0.4rem;
  width: calc(50% - 0.2rem);
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .processing-path .processing-path-item {
    width: 100%;
    margin-right: 0;
    margin-top: 0.52rem;
  }
}
.product-details-page .application-cases .case-box .processing-path .processing-path-item:nth-child(even) {
  margin-right: 0;
}
.product-details-page .application-cases .case-box .processing-path .processing-path-item .label {
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .processing-path .processing-path-item .label {
    font-size: 0.48rem;
    line-height: 0.72rem;
    letter-spacing: 0.04rem;
  }
}
.product-details-page .application-cases .case-box .processing-path .processing-path-item .card-box {
  margin-top: 0.24rem;
  height: 5.2rem;
  border-radius: 0.1rem;
  background: #F9F9F9;
  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;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .processing-path .processing-path-item .card-box {
    margin-top: 0.48rem;
    border-radius: 0.2rem;
    height: 0;
    padding-top: 70%;
    position: relative;
  }
}
.product-details-page .application-cases .case-box .processing-path .processing-path-item .card-box img {
  max-width: 80%;
  max-height: 80%;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .processing-path .processing-path-item .card-box img {
    max-width: 70%;
    max-height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.product-details-page .application-cases .case-box .processing-path .processing-path-item .card-box:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.product-details-page .application-cases .case-box .cutting-table {
  margin-top: 0.8rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .cutting-table {
    margin-top: 1.2rem;
  }
}
.product-details-page .application-cases .case-box .cutting-table .label {
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .cutting-table .label {
    font-size: 0.48rem;
    line-height: 0.72rem;
    letter-spacing: 0.04rem;
  }
}
.product-details-page .application-cases .case-box .cutting-table .table-box {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .cutting-table .table-box {
    margin-top: 0.48rem;
    width: calc(100vw - 0.4rem);
    padding-right: 0.4rem;
    overflow-x: scroll;
    padding-bottom: 0.2rem;
    scrollbar-width: thin;
  }
  .product-details-page .application-cases .case-box .cutting-table .table-box::-webkit-scrollbar {
    width: 0.18rem;
  }
}
.product-details-page .application-cases .case-box .cutting-table .table-box table {
  text-align: center;
  width: 100%;
  background: #ECECEC;
  border-radius: 0.1rem;
  border-collapse: collapse;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .cutting-table .table-box table {
    width: 26rem;
    border-radius: 0.2rem;
  }
}
.product-details-page .application-cases .case-box .cutting-table .table-box table thead {
  font-size: 0.18rem;
  line-height: 0.27rem;
  font-family: "fontFamily-M";
}
.product-details-page .application-cases .case-box .cutting-table .table-box table thead th {
  font-weight: initial;
  letter-spacing: 0.01rem;
  font-size: 0.18rem;
  line-height: 0.27rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .cutting-table .table-box table thead th {
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 0.03rem;
  }
}
.product-details-page .application-cases .case-box .cutting-table .table-box table td,
.product-details-page .application-cases .case-box .cutting-table .table-box table th {
  border: none;
  border-bottom: 0.03rem solid white;
  padding: 0.16rem;
  letter-spacing: 0.01rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .cutting-table .table-box table td,
  .product-details-page .application-cases .case-box .cutting-table .table-box table th {
    padding: 0.3rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    line-height: 0.3rem;
    letter-spacing: 0.02rem;
  }
}
.product-details-page .application-cases .case-box .cutting-table .table-box table tr:last-child td {
  border-bottom: none;
}
.product-details-page .application-cases .case-box .wear-and-tear {
  margin-top: 0.8rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .wear-and-tear {
    margin-top: 1.2rem;
  }
}
.product-details-page .application-cases .case-box .wear-and-tear .label {
  font-size: 0.24rem;
  line-height: 0.36rem;
  letter-spacing: 0.02rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .wear-and-tear .label {
    font-size: 0.48rem;
    line-height: 0.72rem;
    letter-spacing: 0.04rem;
  }
}
.product-details-page .application-cases .case-box .wear-and-tear .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .wear-and-tear .card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0.48rem;
  }
}
.product-details-page .application-cases .case-box .wear-and-tear .card-list .card-li {
  margin-top: 0.24rem;
  margin-right: 0.24rem;
  width: calc(50% - .2rem);
  border-radius: 0.1rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .wear-and-tear .card-list .card-li {
    width: 100%;
    margin-right: 0;
    border-radius: 0.2rem;
    margin-top: 0.4rem;
  }
  .product-details-page .application-cases .case-box .wear-and-tear .card-list .card-li:first-child {
    margin-top: 0;
  }
}
.product-details-page .application-cases .case-box .wear-and-tear .card-list .card-li:nth-child(even) {
  margin-right: 0;
}
.product-details-page .application-cases .case-box .failure-analysis {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .failure-analysis {
    margin-top: 0.48rem;
  }
}
.product-details-page .application-cases .case-box .failure-analysis .label {
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .failure-analysis .label {
    font-size: 0.4rem;
    line-height: 0.6rem;
    letter-spacing: 0.04rem;
  }
}
.product-details-page .application-cases .case-box .failure-analysis .txt-list {
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .failure-analysis .txt-list {
    margin-top: 0.24rem;
  }
}
.product-details-page .application-cases .case-box .failure-analysis .txt-list .txt-li {
  padding-left: 0.18rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  position: relative;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .failure-analysis .txt-list .txt-li {
    font-size: 0.26rem;
    line-height: 0.39rem;
    padding-left: 0.31rem;
  }
}
.product-details-page .application-cases .case-box .failure-analysis .txt-list .txt-li::before {
  content: "";
  position: absolute;
  height: 0.07rem;
  width: 0.07rem;
  background-color: var(--sk-global-color);
  left: 0;
  top: 0.095rem;
}
@media screen and (max-width: 800px) {
  .product-details-page .application-cases .case-box .failure-analysis .txt-list .txt-li::before {
    height: 0.12rem;
    width: 0.12rem;
    top: 0.14rem;
  }
}

@media screen and (max-width: 800px) {
  .manufacturing-page {
    overflow: hidden;
  }
}
.manufacturing-page .capability-box {
  padding: 1.4rem 0;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box {
    padding: 1.95rem 0 2rem;
  }
}
.manufacturing-page .capability-box .tit {
  text-align: center;
}
.manufacturing-page .capability-box .flex-box {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box {
    margin-top: 0.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.manufacturing-page .capability-box .flex-box .card-box {
  width: calc(50% - 0.2rem);
  margin-right: 0.4rem;
  background: #1B1B1B;
  height: 5.4rem;
  border-radius: 0.1rem;
  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;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.6rem;
    height: 11.67rem;
    border-radius: 0.2rem;
  }
  .manufacturing-page .capability-box .flex-box .card-box:last-child {
    margin-bottom: 0;
  }
}
.manufacturing-page .capability-box .flex-box .card-box:nth-child(even) {
  margin-right: 0;
}
.manufacturing-page .capability-box .flex-box .card-box .add-img {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 0.05rem;
  border: 0.01rem solid white;
  top: 0.2rem;
  right: 0.2rem;
  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-transition: 0.2s;
  transition: 0.2s;
}
.manufacturing-page .capability-box .flex-box .card-box .add-img .svg {
  height: 0.12rem;
  width: 0.12rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.manufacturing-page .capability-box .flex-box .card-box .add-img .svg path {
  fill: white;
}
.manufacturing-page .capability-box .flex-box .card-box .name {
  margin-top: 0.72rem;
  color: #FFFFFF;
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .name {
    margin-top: 0.66rem;
    letter-spacing: 0.03rem;
    font-size: 0.36rem;
    line-height: 0.54rem;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-none-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-none-box .num {
  margin-top: 0.31rem;
  color: var(--sk-global-color);
  font-size: 0.56rem;
  line-height: 0.68rem;
  font-family: "fontFamily-TM";
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-none-box .num {
    margin-top: 0.3rem;
    font-size: 0.72rem;
    line-height: 0.88rem;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-none-box .unit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-none-box .unit {
    margin-top: 0.1rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-none-box .pro-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-height: 3rem;
  max-width: 80%;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-none-box .pro-img {
    max-width: 72%;
    max-height: none;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.26rem 0.2rem 0.2rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box {
    visibility: visible;
    opacity: 1;
    height: auto;
    top: 2.17rem;
    padding: 0 0.3rem;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card {
  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;
  height: 100%;
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box {
  height: 100%;
  width: calc(50% - 0.1rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.1rem;
  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) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box {
    border-radius: 0.16rem;
    width: calc(50% - 0.1rem);
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .info-box {
  margin-top: 0.57rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .info-box {
    margin-top: 0.51rem;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .info-box .item-box {
  margin-bottom: 0.33rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .info-box .item-box {
    margin-bottom: 0.36rem;
  }
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .info-box .item-box:last-child {
    margin-bottom: 0.47rem;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .info-box .item-box .num {
  color: var(--sk-global-color);
  font-size: 0.36rem;
  line-height: 0.44rem;
  font-family: "fontFamily-TM";
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .info-box .item-box .num {
    font-size: 0.42rem;
    line-height: 0.51rem;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .info-box .item-box .label {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .info-box .item-box .label {
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .hover-name {
  font-size: 0.2rem;
  line-height: 0.3rem;
  padding-bottom: 0.49rem;
  color: white;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .hover-box .hover-block-box .hover-flex-card .hover-card-box .hover-name {
    padding-bottom: 0.33rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
}
.manufacturing-page .capability-box .flex-box .card-box .bg-img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box .bg-img {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (min-width: 800px) {
  .manufacturing-page .capability-box .flex-box .card-box:hover .add-img {
    border: 0.01rem solid var(--sk-global-color);
    background-color: var(--sk-global-color);
  }
  .manufacturing-page .capability-box .flex-box .card-box:hover .add-img .svg {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .manufacturing-page .capability-box .flex-box .card-box:hover .bg-img {
    opacity: 1;
    visibility: visible;
  }
  .manufacturing-page .capability-box .flex-box .card-box:hover .hover-box .hover-none-box {
    visibility: hidden;
    opacity: 0;
  }
  .manufacturing-page .capability-box .flex-box .card-box:hover .hover-box .hover-block-box {
    visibility: visible;
    opacity: 1;
  }
}
.manufacturing-page .manufacturing-equipment {
  text-align: center;
}
.manufacturing-page .manufacturing-equipment .section_application_scenarios {
  height: 9.6rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .manufacturing-equipment .section_application_scenarios {
    padding-top: calc(128 / 75 * 100%);
    height: 0;
    position: relative;
  }
}
.manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container {
  height: 100%;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li {
  height: 100%;
  width: 100%;
  position: absolute;
}
.manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li .bg-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -webkit-clip-path: polygon(15% 15%, 84% 15%, 84% 84%, 15% 83%);
  clip-path: polygon(15% 15%, 84% 15%, 84% 84%, 15% 83%);
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li .bg-img {
    -webkit-clip-path: none;
    clip-path: none;
  }
}
.manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li .bg-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li .bg-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li .bg-img ._mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li .title {
  color: #FFFFFF;
  padding-top: 1.55rem;
  line-height: 0.42rem;
  font-size: 0.36rem;
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li .title {
    padding-top: 1.6rem;
    letter-spacing: 0.05rem;
    font-size: 0.56rem;
    line-height: 0.84rem;
  }
}
.manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li .context {
  width: 7.96rem;
  margin: 0.28rem auto 0;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 800px) {
  .manufacturing-page .manufacturing-equipment .section_application_scenarios .application_scenarios-container .solution-li .context {
    width: 100%;
    margin: 0.32rem auto 0;
    text-align: left;
  }
}
.manufacturing-page .production-equipment {
  padding: 1.3rem 0;
  background: #F5F5F5;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment {
    padding: 2rem 0 3.16rem;
  }
}
.manufacturing-page .production-equipment .title {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .scroll-box {
    overflow-x: auto;
    width: 100vw;
    margin-left: -0.4rem;
  }
}
.manufacturing-page .production-equipment .btn-btn-pane {
  margin-top: 0.48rem;
  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;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .btn-btn-pane {
    margin-top: 0.6rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 0.4rem;
  }
}
.manufacturing-page .production-equipment .btn-btn-pane .btn-box {
  margin-right: 0.19rem;
  height: 0.4rem;
  padding: 0 0.18rem;
  color: #666666;
  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.14rem;
  line-height: 0.21rem;
  border-radius: 0.03rem;
  letter-spacing: 0.02rem;
  background: #E4E4E4;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .btn-btn-pane .btn-box {
    height: 0.8rem;
    border-radius: 0.08rem;
    padding: 0 0.4rem;
    letter-spacing: 0.04rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
@media screen and (min-width: 800px) {
  .manufacturing-page .production-equipment .btn-btn-pane .btn-box:hover {
    background: #E4E4E4;
  }
}
.manufacturing-page .production-equipment .btn-btn-pane .btn-box.on {
  background-color: var(--sk-global-color);
  color: white;
}
.manufacturing-page .production-equipment .btn-btn-pane .btn-box:last-child {
  margin-right: 0;
}
.manufacturing-page .production-equipment .equipment-list {
  margin-top: 0.7rem;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list {
    overflow: initial;
    position: relative;
  }
}
.manufacturing-page .production-equipment .equipment-list.show {
  display: block;
}
.manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide {
  background: #FFFFFF;
  border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide {
    width: 5.2rem;
    height: 6.4rem;
  }
}
.manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide:nth-child(4) {
  margin-right: 0;
}
.manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide .img-box {
  width: 100%;
  height: 2.68rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide .img-box {
    height: 3.93rem;
  }
}
.manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide .img-box img {
  position: absolute;
  max-width: 80%;
  max-height: 80%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide .name {
  padding: 0 0.2rem 0.3rem;
  height: 1.32rem;
  text-align: center;
  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-size: 0.2rem;
  line-height: 0.3rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide .name {
    height: 2.47rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding: 0 0.2rem 0.5rem;
  }
}
.manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide .name .txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* 设置文本垂直排列 */
  -webkit-line-clamp: 3;
  /* 限制显示的行数 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 超出时显示省略号 */
}
.manufacturing-page .production-equipment .equipment-list .swiper-wrapper .swiper-slide:hover .img-box img {
  -webkit-transform: translateX(-50%) scale(1.1);
  -ms-transform: translateX(-50%) scale(1.1);
  transform: translateX(-50%) scale(1.1);
}
.manufacturing-page .production-equipment .equipment-list .pagination-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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-pagination {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 0.01rem;
  background: #D3D3D3;
  position: absolute;
  width: 3.6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -0.6rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-pagination {
    bottom: -1.16rem;
    height: 0.02rem;
    width: 4.7rem;
  }
}
.manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 0.02rem;
  }
}
.manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow {
    margin-left: 0.36rem;
  }
}
.manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn {
  height: 0.42rem;
  width: 0.42rem;
  border-radius: 0.05rem;
  border: 0.01rem solid #E4E4E4;
  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.3);
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn {
    height: 0.72rem;
    width: 0.72rem;
    border: 0.02rem solid #E4E4E4;
  }
}
.manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn.prev {
  position: absolute;
  left: 0.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 20;
}
.manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn.next {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 20;
}
.manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
  height: 0.12rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
    height: 0.2rem;
  }
}
.manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn path {
  fill: white;
}
@media screen and (min-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn:hover {
    background: var(--sk-global-color);
    border: 0.01rem solid var(--sk-global-color);
  }
  .manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn:hover path {
    fill: white;
  }
}
.manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn.prev {
  margin-right: 0.15rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .production-equipment .equipment-list .pagination-btn .swiper-arrow .-circle-btn.prev {
    margin-right: 0.2rem;
  }
}
.manufacturing-page .production-equipment .equipment-list:hover .pagination-btn .swiper-arrow .-circle-btn {
  opacity: 1;
  visibility: visible;
}
.manufacturing-page .authentication-certificate {
  padding: 1.3rem 0;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate {
    padding: 2rem 0;
  }
}
.manufacturing-page .authentication-certificate .title {
  text-align: center;
}
.manufacturing-page .authentication-certificate .btn-btn-pane {
  margin-top: 0.48rem;
  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;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .btn-btn-pane {
    margin-top: 0.6rem;
  }
}
.manufacturing-page .authentication-certificate .btn-btn-pane .btn-box {
  margin-right: 0.19rem;
  height: 0.4rem;
  padding: 0 0.18rem;
  background: #F3F3F3;
  color: #666666;
  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.14rem;
  line-height: 0.21rem;
  border-radius: 0.03rem;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .btn-btn-pane .btn-box {
    height: 0.8rem;
    border-radius: 0.08rem;
    padding: 0 0.4rem;
    letter-spacing: 0.04rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
@media screen and (min-width: 800px) {
  .manufacturing-page .authentication-certificate .btn-btn-pane .btn-box:hover {
    background: #E4E4E4;
  }
}
.manufacturing-page .authentication-certificate .btn-btn-pane .btn-box.on {
  background-color: var(--sk-global-color);
  color: white;
}
.manufacturing-page .authentication-certificate .btn-btn-pane .btn-box:last-child {
  margin-right: 0;
}
.manufacturing-page .authentication-certificate .certificate-list {
  margin-top: 0.66rem;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list {
    margin-top: 0.89rem;
    overflow: initial;
  }
}
.manufacturing-page .authentication-certificate .certificate-list.show {
  display: block;
}
.manufacturing-page .authentication-certificate .certificate-list .swiper-wrapper .swiper-slide {
  height: 3.78rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .swiper-wrapper .swiper-slide {
    width: 4.57rem;
    height: 6.4rem;
  }
}
.manufacturing-page .authentication-certificate .certificate-list .swiper-wrapper .swiper-slide .img-box {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.manufacturing-page .authentication-certificate .certificate-list .swiper-wrapper .swiper-slide .img-box img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: fill;
  left: 0;
  top: 0;
}
.manufacturing-page .authentication-certificate .certificate-list .pagination-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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn {
    margin-top: 0.8rem;
  }
}
.manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-pagination {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 0.01rem;
  background: #D3D3D3;
  position: absolute;
  width: 3.6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -0.6rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-pagination {
    height: 0.02rem;
    position: initial;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 0.04rem;
    top: -0.02rem;
  }
}
.manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow {
    margin-left: 0.36rem;
  }
}
.manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn {
  height: 0.42rem;
  width: 0.42rem;
  border-radius: 0.05rem;
  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.3);
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0);
    border: 0.02rem solid #E4E4E4;
  }
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn {
    height: 0.72rem;
    width: 0.72rem;
    border: 0.02rem solid #E4E4E4;
  }
}
@media screen and (min-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn.prev {
    position: absolute;
    left: 0.2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
  }
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn.next {
    position: absolute;
    right: 0.2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
  }
}
.manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
  height: 0.12rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
    height: 0.2rem;
  }
}
.manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn path {
  fill: white;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn path {
    fill: #999999;
  }
}
@media screen and (min-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn:hover {
    background: var(--sk-global-color);
    border: 0.01rem solid var(--sk-global-color);
  }
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn:hover path {
    fill: white;
  }
}
.manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn.prev {
  margin-right: 0.15rem;
}
@media screen and (max-width: 800px) {
  .manufacturing-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn.prev {
    margin-right: 0.2rem;
  }
}
.manufacturing-page .authentication-certificate .certificate-list:hover .pagination-btn .swiper-arrow .-circle-btn {
  opacity: 1;
  visibility: visible;
}

.g_crumb {
  background: #F5F5F5;
  height: 0.6rem;
  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_crumb {
    height: 1rem;
  }
}
.g_crumb ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g_crumb ul li .text-svg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.14rem;
  line-height: 0.21rem;
  letter-spacing: 0.01rem;
  color: #999999;
}
@media screen and (max-width: 800px) {
  .g_crumb ul li .text-svg {
    font-size: 0.26rem;
    line-height: 0.39rem;
    letter-spacing: 0.02rem;
  }
}
.g_crumb ul li .text-svg .hr {
  white-space: pre;
}
.g_crumb ul li:last-child .text-svg {
  color: #333333;
}
@media screen and (min-width: 800px) {
  .g_crumb ul li:hover .text-svg {
    color: #333333;
  }
}

.solution-page {
  padding-top: var(--totalH);
}
.solution-page .flex-box {
  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.9rem;
  padding-bottom: 1.4rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box {
    padding-top: 0.8rem;
    padding-bottom: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.solution-page .flex-box .left-tree {
  width: 3.6rem;
  margin-top: 0.06rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .left-tree {
    width: 100%;
  }
}
.solution-page .flex-box .left-tree .tree-box {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  letter-spacing: 0.01rem;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell {
  border-radius: 0.1rem;
  background: #F5F5F5;
  padding: 0.16rem 0.15rem;
  margin-bottom: 0.1rem;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell.show {
  border: 0.01rem solid #D3D3D3;
  padding-top: 0.3rem;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell.show > .node-cell .expanded-img {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.solution-page .flex-box .left-tree .tree-box .tree-cell.show > .tree-children {
  padding: 0.1rem 0;
  height: auto;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .node-cell {
  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: 0 0.15rem;
  cursor: pointer;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .node-cell .name {
  font-size: 0.18rem;
  line-height: 0.27rem;
  letter-spacing: 0.01rem;
  font-family: "fontFamily-M";
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .node-cell .expanded-img {
  width: 0.14rem;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children {
  height: 0;
  overflow: hidden;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content.show > .node-cell .expanded-img {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content.show > .node-content {
  height: auto;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-cell {
  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: 0.08rem 0.15rem 0.08rem 0.25rem;
  cursor: pointer;
  border-radius: 0.03rem;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-cell .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 0.01rem;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-cell .name:hover {
  text-decoration: underline;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-cell .expanded-img {
  width: 0.14rem;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-cell.on {
  background: #E4E4E4;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-cell.on .name {
  color: var(--sk-global-color);
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-content {
  height: 0;
  overflow: hidden;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-content .node-cell {
  padding: 0.06rem 0.15rem 0.06rem 0.35rem;
  border-radius: 0.03rem;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-content .node-cell .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 0.01rem;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-content .node-cell .name:hover {
  text-decoration: underline;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-content .node-cell.on {
  background: #E4E4E4;
}
.solution-page .flex-box .left-tree .tree-box .tree-cell > .tree-children .tree-item-content > .node-content .node-cell.on .name {
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .top-tree {
    position: relative;
  }
  .solution-page .flex-box .top-tree .cell-box {
    height: 1rem;
    border-radius: 0.16rem;
    background: #F5F5F5;
    border: 0.02rem solid #D3D3D3;
    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;
    padding: 0 0.3rem;
    letter-spacing: 0.02rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .solution-page .flex-box .top-tree .cell-box .img-box {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .solution-page .flex-box .top-tree .cell-box .img-box img {
    width: 0.2rem;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box {
    position: absolute;
    top: 1.1rem;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0rem 0.1rem 0.3rem 0rem rgba(194, 194, 194, 0.25);
    border-radius: 0.2rem;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children {
    height: 0;
    overflow: hidden;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content.show > .node-cell .expanded-img {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content.show > .tree-content {
    height: auto;
    padding-top: 0.06rem;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .node-cell {
    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: 0.2rem 0.15rem 0.2rem 0.25rem;
    cursor: pointer;
    border-radius: 0.03rem;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .node-cell .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 0.03rem;
    font-family: "fontFamily-M";
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .node-cell .expanded-img {
    width: 0.2rem;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content {
    height: 0;
    overflow: hidden;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content.show > .node-cell .expanded-img {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content.show > .tree-content {
    height: auto;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .node-cell {
    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: 0.2rem 0.35rem 0.2rem 0.25rem;
    cursor: pointer;
    border-radius: 0.03rem;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .node-cell .name {
    font-size: 0.26rem;
    line-height: 0.39rem;
    letter-spacing: 0.02rem;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .node-cell .expanded-img {
    width: 0.2rem;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .node-cell.on {
    background: #F5F5F5;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .node-cell.on .name {
    color: var(--sk-global-color);
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .tree-content {
    height: 0;
    overflow: hidden;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .tree-content > .node-cell {
    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: 0.2rem 0.15rem 0.2rem 0.45rem;
    cursor: pointer;
    border-radius: 0.03rem;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .tree-content > .node-cell .name {
    font-size: 0.26rem;
    line-height: 0.39rem;
    letter-spacing: 0.02rem;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .tree-content > .node-cell .expanded-img {
    width: 0.2rem;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .tree-content > .node-cell.on {
    background: #F5F5F5;
  }
  .solution-page .flex-box .top-tree .tree-dropdown-box > .tree-children > .tree-item-content > .tree-content .tree-item-content > .tree-content > .node-cell.on .name {
    color: var(--sk-global-color);
  }
  .solution-page .flex-box .top-tree.show .cell-box .img-box {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  .solution-page .flex-box .top-tree.show .tree-dropdown-box {
    padding: 0.25rem 0.25rem 0.37rem;
  }
  .solution-page .flex-box .top-tree.show .tree-dropdown-box > .tree-children {
    height: auto;
  }
}
.solution-page .flex-box .rigth-box {
  width: 10.8rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box {
    width: 100%;
    margin-top: 1.39rem;
  }
}
.solution-page .flex-box .rigth-box.version1 .tit {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .tit {
    font-size: 0.64rem;
    line-height: 0.96rem;
    letter-spacing: 0.06rem;
  }
}
.solution-page .flex-box .rigth-box.version1 .banner-box {
  margin-top: 0.36rem;
  overflow: hidden;
  border-radius: 0.1rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .banner-box {
    margin-top: 0.48rem;
    border-radius: 0.2rem;
  }
}
.solution-page .flex-box .rigth-box.version1 .txt {
  margin-top: 0.36rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .txt {
    margin-top: 0.6rem;
  }
}
.solution-page .flex-box .rigth-box.version1 .recommend-box {
  margin-top: 1rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .recommend-box {
    margin-top: 1.4rem;
  }
}
.solution-page .flex-box .rigth-box.version1 .recommend-box .tit {
  font-size: 0.32rem;
  line-height: 0.48rem;
  text-align: center;
  font-family: "fontFamily-B";
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .recommend-box .tit {
    font-size: 0.56rem;
    line-height: 0.84rem;
    letter-spacing: 0.05rem;
  }
}
.solution-page .flex-box .rigth-box.version1 .recommend-box .product_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.23rem;
  margin-top: 0.36rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .recommend-box .product_list {
    margin-top: 0.6rem;
    gap: 0.4rem;
  }
}
.solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item {
  width: calc((100% - 0.23rem * 2) / 3);
  border-radius: 0.1rem;
  overflow: hidden;
  background: -webkit-radial-gradient(50% 100%, ellipse, #ffffff 0%, #e8e8e8 100%);
  background: radial-gradient(ellipse at 50% 100%, #ffffff 0%, #e8e8e8 100%);
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item {
    width: 100%;
    border-radius: 0.2rem;
  }
}
.solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item a {
  display: block;
  padding: 0.62rem 0.3rem 0.33rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item a {
    padding: 0.99rem 0.3rem 0.54rem;
  }
}
.solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item a .__pp_con {
  padding-top: calc(320 / 336 * 100%);
  overflow: inherit;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item a .__pp_con {
    padding-top: calc(320 / 503 * 100%);
  }
}
.solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item a .__pp_con .__resource img {
  object-fit: contain;
}
.solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item a .name {
  margin-top: 0.33rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  font-family: "fontFamily-M";
  color: var(--fcolor-defult);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item a .name {
    margin-top: 0.81rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item:hover a .name {
    color: var(--sk-global-color);
  }
  .solution-page .flex-box .rigth-box.version1 .recommend-box .product_list .product_list_item:hover .__scale_img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
  }
}
.solution-page .flex-box .rigth-box.version2 .tit {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version2 .tit {
    font-size: 0.64rem;
    line-height: 0.96rem;
    letter-spacing: 0.06rem;
  }
}
.solution-page .flex-box .rigth-box.version2 .banner-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.44rem;
  gap: 0.2rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version2 .banner-box {
    margin-top: 0.48rem;
    gap: 0.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.solution-page .flex-box .rigth-box.version2 .banner-box img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: auto;
  border-radius: 0.1rem;
  height: 2.98rem;
  width: 5.3rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version2 .banner-box img {
    border-radius: 0.2rem;
    width: 100%;
    height: 3.77rem;
  }
}
.solution-page .flex-box .rigth-box.version2 .txt {
  margin-top: 0.36rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version2 .txt {
    margin-top: 0.6rem;
  }
}
.solution-page .flex-box .rigth-box.version2 .video-box {
  margin-top: 0.8rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version2 .video-box {
    margin-top: 1.48rem;
  }
}
.solution-page .flex-box .rigth-box.version2 .video-box .video-tit {
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: "fontFamily-B";
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version2 .video-box .video-tit {
    font-size: 0.56rem;
    line-height: 0.84rem;
    letter-spacing: 0.05rem;
    text-align: center;
  }
}
.solution-page .flex-box .rigth-box.version2 .video-box .video-list {
  margin-top: 0.36rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version2 .video-box .video-list {
    margin-top: 0.6rem;
    gap: 0.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.solution-page .flex-box .rigth-box.version2 .video-box .video-list .video-play {
  position: relative;
  width: calc(50% - 0.1rem);
  height: 2.98rem;
  cursor: pointer;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version2 .video-box .video-list .video-play {
    width: 100%;
    border-radius: 0.2rem;
  }
}
.solution-page .flex-box .rigth-box.version2 .video-box .video-list .video-play .play-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 0.54rem;
  width: 0.54rem;
}
@media screen and (max-width: 800px) {
  .solution-page .flex-box .rigth-box.version2 .video-box .video-list .video-play .play-img {
    height: 0.68rem;
    width: 0.68rem;
  }
}

.quality-management-page {
  overflow: hidden;
}
.quality-management-page .policy {
  padding: 1.4rem 0;
}
@media screen and (max-width: 800px) {
  .quality-management-page .policy {
    padding: 2rem 0;
  }
}
.quality-management-page .policy .title {
  text-align: center;
}
.quality-management-page .policy .policy-list {
  margin-top: 0.38rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .policy .policy-list {
    margin-top: 0.69rem;
    overflow: hidden;
  }
  .quality-management-page .policy .policy-list .swiper-pagination {
    position: relative;
    margin-top: 0.56rem;
  }
  .quality-management-page .policy .policy-list .swiper-pagination .swiper-pagination-bullet {
    width: 0.16rem;
    height: 0.16rem;
    margin-right: 0.1rem;
    background: #E4E4E4;
    opacity: 1;
  }
  .quality-management-page .policy .policy-list .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }
  .quality-management-page .policy .policy-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--sk-global-color);
  }
}
@media screen and (min-width: 800px) {
  .quality-management-page .policy .policy-list .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 0.2rem;
  }
}
.quality-management-page .policy .policy-list .swiper-slide {
  width: calc((100% - 0.6rem) / 4);
  margin-right: 0.2rem;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #F5F5F5;
  height: auto;
}
@media screen and (max-width: 800px) {
  .quality-management-page .policy .policy-list .swiper-slide {
    margin-right: 0;
    border-radius: 0.2rem;
  }
}
.quality-management-page .policy .policy-list .swiper-slide:nth-child(4n) {
  margin-right: 0;
}
.quality-management-page .policy .policy-list .swiper-slide .img-box {
  height: 2.05rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .policy .policy-list .swiper-slide .img-box {
    height: 3.76rem;
  }
}
.quality-management-page .policy .policy-list .swiper-slide .img-box img {
  height: 100%;
  width: 100%;
}
.quality-management-page .policy .policy-list .swiper-slide .infor-box {
  padding: 0.28rem 0.26rem 0.33rem 0.3rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .policy .policy-list .swiper-slide .infor-box {
    padding: 0.52rem 0.4rem 0.33rem;
  }
}
.quality-management-page .policy .policy-list .swiper-slide .infor-box .name {
  font-size: 0.24rem;
  line-height: 0.28rem;
  letter-spacing: 0.02rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .quality-management-page .policy .policy-list .swiper-slide .infor-box .name {
    font-size: 0.36rem;
    line-height: 0.66rem;
    letter-spacing: 0.03rem;
  }
}
.quality-management-page .policy .policy-list .swiper-slide .infor-box .info-list {
  margin-top: 0.13rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .policy .policy-list .swiper-slide .infor-box .info-list {
    margin-top: 0.24rem;
  }
}
.quality-management-page .policy .policy-list .swiper-slide .infor-box .info-list .txt {
  margin-bottom: 0.1rem;
  padding-left: 0.18rem;
  position: relative;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .quality-management-page .policy .policy-list .swiper-slide .infor-box .info-list .txt {
    margin-bottom: 0.27rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    padding-left: 0.33rem;
  }
}
.quality-management-page .policy .policy-list .swiper-slide .infor-box .info-list .txt:last-child {
  margin-bottom: 0;
}
.quality-management-page .policy .policy-list .swiper-slide .infor-box .info-list .txt::before {
  content: "";
  position: absolute;
  height: 0.07rem;
  width: 0.07rem;
  background-color: var(--sk-global-color);
  left: 0;
  top: 0.09rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .policy .policy-list .swiper-slide .infor-box .info-list .txt::before {
    top: 0.12rem;
    width: 0.13rem;
    height: 0.13rem;
  }
}
.quality-management-page .performance-excellence {
  padding: 1.3rem 0 1.4rem;
  background: #F5F5F5;
}
@media screen and (max-width: 800px) {
  .quality-management-page .performance-excellence {
    padding: 2rem 0;
  }
}
.quality-management-page .performance-excellence .title {
  text-align: center;
}
.quality-management-page .performance-excellence .card-list {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0.4rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .performance-excellence .card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.8rem;
  }
}
.quality-management-page .performance-excellence .card-list .card-box {
  width: calc(50% - 0.2rem);
  height: 3.2rem;
  margin-right: 0.4rem;
  border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .quality-management-page .performance-excellence .card-list .card-box {
    width: 100%;
    height: auto;
  }
}
.quality-management-page .performance-excellence .card-list .card-box:nth-child(2n) {
  margin-right: 0;
}
.quality-management-page .performance-excellence .card-list .card-box .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .quality-management-page .performance-excellence .card-list .card-box .bg-img {
    position: relative;
    border-radius: 0.2rem;
  }
}
.quality-management-page .performance-excellence .card-list .card-box .con-info {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0.3rem 0.3rem 0.28rem;
  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;
}
@media screen and (max-width: 800px) {
  .quality-management-page .performance-excellence .card-list .card-box .con-info {
    background: none;
    padding: 0;
    padding-top: 0.45rem;
  }
}
.quality-management-page .performance-excellence .card-list .card-box .con-info .name {
  font-size: 0.24rem;
  line-height: 0.28rem;
  letter-spacing: 0.02rem;
  color: #FFFFFF;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .quality-management-page .performance-excellence .card-list .card-box .con-info .name {
    color: #333333;
    font-size: 0.36rem;
    line-height: 0.54rem;
  }
}
.quality-management-page .performance-excellence .card-list .card-box .con-info .lint {
  margin-top: 0.15rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .performance-excellence .card-list .card-box .con-info .lint {
    margin-top: 0.3rem;
  }
}
.quality-management-page .performance-excellence .card-list .card-box .con-info .lint .txt {
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 0.17rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .quality-management-page .performance-excellence .card-list .card-box .con-info .lint .txt {
    color: #666666;
    font-size: 0.26rem;
    line-height: 0.39rem;
    padding-left: 0.33rem;
  }
}
.quality-management-page .performance-excellence .card-list .card-box .con-info .lint .txt::before {
  content: "";
  position: absolute;
  height: 0.07rem;
  width: 0.07rem;
  background-color: var(--sk-global-color);
  left: 0;
  top: 0.09rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .performance-excellence .card-list .card-box .con-info .lint .txt::before {
    width: 0.12rem;
    height: 0.12rem;
    top: 0.12rem;
  }
}
.quality-management-page .performance-excellence .process-img {
  margin: 1rem auto 0;
  width: 11rem;
  display: block;
}
.quality-management-page .continuous-improvement {
  padding: 1.3rem 0 1.4rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .continuous-improvement {
    padding: 2rem 0;
  }
}
.quality-management-page .continuous-improvement .title {
  text-align: center;
}
.quality-management-page .continuous-improvement .card-list {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0.4rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .continuous-improvement .card-list {
    margin-top: 0.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.quality-management-page .continuous-improvement .card-list .card-box {
  width: calc(50% - 0.2rem);
  height: 6.2rem;
  margin-right: 0.4rem;
  border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
  overflow: hidden;
  position: relative;
  background: #1B1B1B;
  padding: 0.44rem 0.48rem 0.4rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .continuous-improvement .card-list .card-box {
    width: 100%;
    border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
    padding: 0.4rem 0.3rem;
    height: auto;
  }
}
.quality-management-page .continuous-improvement .card-list .card-box:nth-child(2n) {
  margin-right: 0;
}
.quality-management-page .continuous-improvement .card-list .card-box .bg-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.quality-management-page .continuous-improvement .card-list .card-box .img-box {
  height: 4.38rem;
  width: 6.22rem;
  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: relative;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .quality-management-page .continuous-improvement .card-list .card-box .img-box {
    width: 6rem;
    height: 4.67rem;
  }
}
.quality-management-page .continuous-improvement .card-list .card-box .img-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.quality-management-page .continuous-improvement .card-list .card-box .tag-btn {
  min-width: 4.2rem;
  max-width: 80%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 0.4rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: "fontFamily-M";
  padding: 0.13rem 0.4rem;
  min-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-radius: 0.28rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .continuous-improvement .card-list .card-box .tag-btn {
    margin-top: 0.33rem;
    position: relative;
    text-align: center;
    bottom: 0;
    min-width: 100%;
    max-width: 100%;
    padding: 0.21rem 0.4rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    border-radius: 0.45rem;
  }
}
.quality-management-page .customer-quality-assurance {
  position: relative;
  padding: 1.3rem 0 2rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance {
    overflow: hidden;
  }
}
.quality-management-page .customer-quality-assurance .bg-img {
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
}
.quality-management-page .customer-quality-assurance .title {
  text-align: center;
  color: white;
  position: relative;
}
.quality-management-page .customer-quality-assurance .assurance-list {
  margin-top: 0.67rem;
  position: relative;
}
.quality-management-page .customer-quality-assurance .assurance-list .swiper-slide {
  height: 4rem;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.1rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .swiper-slide {
    width: 5.2rem;
    height: 7.43rem;
    padding: 0.2rem;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .swiper-slide .img-box {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  overflow: hidden;
}
.quality-management-page .customer-quality-assurance .assurance-list .swiper-slide .img-box img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.quality-management-page .customer-quality-assurance .assurance-list .swiper-slide .tag-box {
  position: absolute;
  bottom: 0.1rem;
  left: 0.1rem;
  width: calc(100% - 0.2rem);
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  border-radius: 0.1rem;
  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: 0.18rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .swiper-slide .tag-box {
    left: 0.2rem;
    bottom: 0.2rem;
    width: calc(100% - 0.4rem);
    border-radius: 0.16rem;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .swiper-slide .tag-box .num {
  background: var(--sk-global-color);
  border-radius: 50%;
  width: 0.36rem;
  height: 0.36rem;
  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;
  color: white;
  font-size: 0.16rem;
  line-height: 0.2rem;
  font-family: "fontFamily-TM";
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .swiper-slide .tag-box .num {
    height: 0.64rem;
    width: 0.64rem;
    font-size: 0.26rem;
    line-height: 0.32rem;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .swiper-slide .tag-box .txt {
  margin-left: 0.1rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  letter-spacing: 0.02rem;
  font-family: "fontFamily-M";
  color: white;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .swiper-slide .tag-box .txt {
    margin-left: 0.2rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .pagination-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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn {
    margin-top: 0.8rem;
    width: calc(100% + .4rem);
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-pagination {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 0.01rem;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  width: calc(100% + 2rem);
  left: 0;
  bottom: -0.6rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-pagination {
    height: 0.02rem;
    position: initial;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 0.04rem;
    top: -0.02rem;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow {
    margin-left: 0.36rem;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn {
  height: 0.42rem;
  width: 0.42rem;
  border-radius: 0.05rem;
  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.3);
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0);
    border: 0.02rem solid #E4E4E4;
  }
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn {
    height: 0.72rem;
    width: 0.72rem;
    border: 0.02rem solid #E4E4E4;
  }
}
@media screen and (min-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn.prev {
    position: absolute;
    left: 0.2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
  }
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn.next {
    position: absolute;
    right: 0.2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
  height: 0.12rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
    height: 0.2rem;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn path {
  fill: white;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn path {
    fill: #999999;
  }
}
@media screen and (min-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn:hover {
    background: var(--sk-global-color);
    border: 0.01rem solid var(--sk-global-color);
  }
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn:hover path {
    fill: white;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn.prev {
  margin-right: 0.15rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .customer-quality-assurance .assurance-list .pagination-btn .swiper-arrow .-circle-btn.prev {
    margin-right: 0.2rem;
  }
}
.quality-management-page .customer-quality-assurance .assurance-list:hover .pagination-btn .swiper-arrow .-circle-btn {
  opacity: 1;
  visibility: visible;
}
.quality-management-page .detection-technology {
  padding: 1.3rem 0 1.4rem;
  background: #F5F5F5;
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology {
    padding: 2rem 0;
  }
}
.quality-management-page .detection-technology .title {
  text-align: center;
}
.quality-management-page .detection-technology .key-equipment {
  margin-top: 0.48rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .key-equipment {
    margin-top: 0.6rem;
  }
}
.quality-management-page .detection-technology .key-equipment .label {
  font-size: 0.32rem;
  line-height: 0.48rem;
  letter-spacing: 0.03rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .key-equipment .label {
    letter-spacing: 0.04rem;
    font-size: 0.4rem;
    line-height: 0.6rem;
  }
}
.quality-management-page .detection-technology .key-equipment .device-list {
  margin-top: 0.36rem;
}
@media screen and (min-width: 800px) {
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 0.2rem;
  }
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .key-equipment .device-list {
    margin-top: 0.45rem;
    overflow: hidden;
  }
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-pagination {
    position: relative;
    margin-top: 0.56rem;
  }
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-pagination .swiper-pagination-bullet {
    width: 0.16rem;
    height: 0.16rem;
    margin-right: 0.1rem;
    background: #E4E4E4;
    opacity: 1;
  }
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--sk-global-color);
  }
}
.quality-management-page .detection-technology .key-equipment .device-list .swiper-slide {
  background: #FFFFFF;
  width: calc((100% - 0.6rem) / 4);
  border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
  margin-right: 0.2rem;
  padding-bottom: 0.32rem;
  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;
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-slide {
    width: 100%;
    margin-right: 0;
    padding-bottom: 0.55rem;
  }
}
.quality-management-page .detection-technology .key-equipment .device-list .swiper-slide:nth-child(4n) {
  margin-right: 0;
}
.quality-management-page .detection-technology .key-equipment .device-list .swiper-slide .img-box {
  width: 2.27rem;
  height: 3rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-slide .img-box {
    height: 5.67rem;
    width: 100%;
  }
}
.quality-management-page .detection-technology .key-equipment .device-list .swiper-slide .img-box img {
  position: absolute;
  height: 77%;
  width: 100%;
  object-fit: contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-slide .img-box img {
    height: 70%;
    width: 80%;
  }
}
.quality-management-page .detection-technology .key-equipment .device-list .swiper-slide .name {
  font-size: 0.2rem;
  line-height: 0.3rem;
  letter-spacing: 0.02rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-slide .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .quality-management-page .detection-technology .key-equipment .device-list .swiper-slide:hover .img-box img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.quality-management-page .detection-technology .test-equipment {
  margin-top: 0.8rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .test-equipment {
    margin-top: 1.2rem;
  }
}
.quality-management-page .detection-technology .test-equipment .label {
  font-size: 0.32rem;
  line-height: 0.48rem;
  letter-spacing: 0.03rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .test-equipment .label {
    letter-spacing: 0.04rem;
    font-size: 0.4rem;
    line-height: 0.6rem;
  }
}
.quality-management-page .detection-technology .test-equipment .table-list {
  margin-top: 0.36rem;
}
@media screen and (min-width: 800px) {
  .quality-management-page .detection-technology .test-equipment .table-list .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 0.32rem;
  }
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .test-equipment .table-list {
    margin-top: 0.48rem;
    overflow: hidden;
  }
  .quality-management-page .detection-technology .test-equipment .table-list .swiper-pagination {
    position: relative;
    margin-top: 0.56rem;
  }
  .quality-management-page .detection-technology .test-equipment .table-list .swiper-pagination .swiper-pagination-bullet {
    width: 0.16rem;
    height: 0.16rem;
    margin-right: 0.1rem;
    background: #E4E4E4;
    opacity: 1;
  }
  .quality-management-page .detection-technology .test-equipment .table-list .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }
  .quality-management-page .detection-technology .test-equipment .table-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--sk-global-color);
  }
}
.quality-management-page .detection-technology .test-equipment .table-list .swiper-slide {
  width: calc((100% - 0.64rem) / 3);
  margin-right: 0.32rem;
  background: #ECECEC;
  border-radius: 0.1rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .test-equipment .table-list .swiper-slide {
    width: 100%;
    margin-right: 0;
    border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
  }
}
.quality-management-page .detection-technology .test-equipment .table-list .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
.quality-management-page .detection-technology .test-equipment .table-list .swiper-slide .table-box .cell-box {
  border-bottom: 0.02rem solid #ffffff;
  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-left: 0.5rem;
  padding-top: 0.12rem;
  padding-bottom: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .test-equipment .table-list .swiper-slide .table-box .cell-box {
    padding-left: 0.4rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    padding-top: 0.26rem;
    padding-bottom: 0.26rem;
    letter-spacing: 0.02rem;
  }
}
.quality-management-page .detection-technology .test-equipment .table-list .swiper-slide .table-box .cell-box .num {
  padding-left: 0.2rem;
  width: 1.2rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .test-equipment .table-list .swiper-slide .table-box .cell-box .num {
    width: 1.47rem;
  }
}
.quality-management-page .detection-technology .test-equipment .table-list .swiper-slide .table-box .cell-box:last-child {
  border-bottom: none;
}
.quality-management-page .detection-technology .test-equipment .table-list .swiper-slide .table-box .cell-box.thead {
  padding-top: 0.17rem;
  padding-bottom: 0.16rem;
  font-size: 0.18rem;
  line-height: 0.27rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .quality-management-page .detection-technology .test-equipment .table-list .swiper-slide .table-box .cell-box.thead {
    padding-top: 0.36rem;
    padding-bottom: 0.36rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
}
.quality-management-page .organizational-structure {
  padding-top: 1.3rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure {
    padding-top: 2rem;
  }
}
.quality-management-page .organizational-structure .title {
  text-align: center;
}
.quality-management-page .organizational-structure .structure-img {
  margin-top: 0.48rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-img {
    margin-top: 0.6rem;
  }
}
.quality-management-page .organizational-structure .structure-card {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 4.8rem;
  background: #F5F5F5;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card {
    margin-top: 1.52rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0.2rem;
  }
}
.quality-management-page .organizational-structure .structure-card .left-img {
  width: 7.4rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card .left-img {
    width: 100%;
  }
}
.quality-management-page .organizational-structure .structure-card .left-img img {
  width: 100%;
  width: 100%;
}
.quality-management-page .organizational-structure .structure-card .right-con {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.57rem 0.8rem 0.4rem 0.8rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card .right-con {
    padding: 0.55rem 0.4rem 0.74rem;
  }
}
.quality-management-page .organizational-structure .structure-card .right-con .tit {
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card .right-con .tit {
    font-size: 0.4rem;
    line-height: 0.6rem;
    letter-spacing: 0.04rem;
  }
}
.quality-management-page .organizational-structure .structure-card .right-con .cell-list {
  margin-top: 0.42rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card .right-con .cell-list {
    margin-top: 0.44rem;
  }
}
.quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li {
  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: 0.25rem;
  padding-top: 0.25rem;
  border-bottom: 0.01rem solid #D3D3D3;
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li {
    padding-top: 0.4rem;
    padding-bottom: 0.46rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li:first-child {
  padding-top: 0;
}
.quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li .label {
  font-size: 0.2rem;
  line-height: 0.3rem;
  font-family: "fontFamily-M";
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li .label {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li .value {
    margin-top: 0.2rem;
  }
}
.quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li .value .num {
  color: var(--sk-global-color);
  font-size: 0.24rem;
  line-height: 0.26rem;
  vertical-align: top;
  margin: 0 0.1rem;
  font-family: "fontFamily-TB";
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li .value .num {
    font-size: 0.36rem;
    line-height: 0.26rem;
  }
}
.quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li .value .txt {
  display: inline-block;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #666666;
  vertical-align: top;
}
@media screen and (max-width: 800px) {
  .quality-management-page .organizational-structure .structure-card .right-con .cell-list .cell-li .value .txt {
    font-size: 0.26rem;
    line-height: 0.26rem;
  }
}
.quality-management-page .authentication-certificate {
  padding: 1.3rem 0 2.12rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate {
    padding: 2rem 0;
  }
}
.quality-management-page .authentication-certificate .title {
  text-align: center;
}
.quality-management-page .authentication-certificate .btn-btn-pane {
  margin-top: 0.48rem;
  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;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .btn-btn-pane {
    margin-top: 0.6rem;
  }
}
.quality-management-page .authentication-certificate .btn-btn-pane .btn-box {
  margin-right: 0.19rem;
  height: 0.4rem;
  padding: 0 0.18rem;
  background: #F3F3F3;
  color: #666666;
  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.14rem;
  line-height: 0.21rem;
  border-radius: 0.03rem;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .btn-btn-pane .btn-box {
    height: 0.8rem;
    border-radius: 0.08rem;
    padding: 0 0.4rem;
    letter-spacing: 0.04rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
@media screen and (min-width: 800px) {
  .quality-management-page .authentication-certificate .btn-btn-pane .btn-box:hover {
    background: #E4E4E4;
  }
}
.quality-management-page .authentication-certificate .btn-btn-pane .btn-box.on {
  background-color: var(--sk-global-color);
  color: white;
}
.quality-management-page .authentication-certificate .btn-btn-pane .btn-box:last-child {
  margin-right: 0;
}
.quality-management-page .authentication-certificate .certificate-list {
  margin-top: 0.51rem;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list {
    margin-top: 0.6rem;
    overflow: initial;
  }
}
.quality-management-page .authentication-certificate .certificate-list.show {
  display: block;
}
.quality-management-page .authentication-certificate .certificate-list .swiper-wrapper .swiper-slide {
  height: 3.78rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .swiper-wrapper .swiper-slide {
    width: 4.57rem;
    height: 6.4rem;
  }
}
.quality-management-page .authentication-certificate .certificate-list .swiper-wrapper .swiper-slide .img-box {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.quality-management-page .authentication-certificate .certificate-list .swiper-wrapper .swiper-slide .img-box img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: fill;
  left: 0;
  top: 0;
}
.quality-management-page .authentication-certificate .certificate-list .pagination-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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn {
    margin-top: 0.8rem;
  }
}
.quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-pagination {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 0.01rem;
  background: #D3D3D3;
  position: absolute;
  width: 3.6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -0.6rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-pagination {
    height: 0.02rem;
    position: initial;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 0.04rem;
    top: -0.02rem;
  }
}
.quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow {
    margin-left: 0.36rem;
  }
}
.quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn {
  height: 0.42rem;
  width: 0.42rem;
  border-radius: 0.05rem;
  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.3);
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0);
    border: 0.02rem solid #E4E4E4;
  }
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn {
    height: 0.72rem;
    width: 0.72rem;
    border: 0.02rem solid #E4E4E4;
  }
}
@media screen and (min-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn.prev {
    position: absolute;
    left: 0.2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
  }
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn.next {
    position: absolute;
    right: 0.2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
  }
}
.quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
  height: 0.12rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn .svg-ctx {
    height: 0.2rem;
  }
}
.quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn path {
  fill: white;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn path {
    fill: #999999;
  }
}
@media screen and (min-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn:hover {
    background: var(--sk-global-color);
    border: 0.01rem solid var(--sk-global-color);
  }
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn:hover path {
    fill: white;
  }
}
.quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn.prev {
  margin-right: 0.15rem;
}
@media screen and (max-width: 800px) {
  .quality-management-page .authentication-certificate .certificate-list .pagination-btn .swiper-arrow .-circle-btn.prev {
    margin-right: 0.2rem;
  }
}
.quality-management-page .authentication-certificate .certificate-list:hover .pagination-btn .swiper-arrow .-circle-btn {
  opacity: 1;
  visibility: visible;
}

.link__card-list-box {
  padding-top: 0.8rem;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 800px) {
  .link__card-list-box {
    padding-top: 1.2rem;
    padding-bottom: 0.22rem;
  }
}
.link__card-list-box .link__card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .link__card-list-box .link__card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.link__card-list-box .link__card-list .link__card {
  width: calc((100% - 0.6rem) / 4);
  height: 1.4rem;
  border-radius: 0.1rem;
  overflow: hidden;
  margin-right: 0.2rem;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .link__card-list-box .link__card-list .link__card {
    width: 100%;
    height: 2.13rem;
    margin-bottom: 0.2rem;
    border-radius: 0.2rem;
  }
}
.link__card-list-box .link__card-list .link__card:last-child {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .link__card-list-box .link__card-list .link__card:last-child {
    margin-bottom: 0;
  }
}
.link__card-list-box .link__card-list .link__card::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link__card-list-box .link__card-list .link__card::before {
  content: "";
  position: absolute;
  height: 0.01rem;
  top: 0;
  width: 0;
  background: var(--sk-global-color);
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .link__card-list-box .link__card-list .link__card::before {
    height: 0.03rem;
  }
}
.link__card-list-box .link__card-list .link__card .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.link__card-list-box .link__card-list .link__card .name {
  font-family: "fontFamily-M";
  font-size: 0.24rem;
  line-height: 0.36rem;
  letter-spacing: 0.02rem;
  position: relative;
  z-index: 5;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .link__card-list-box .link__card-list .link__card .name {
    font-size: 0.36rem;
    line-height: 0.54rem;
  }
}
.link__card-list-box .link__card-list .link__card.on {
  width: 4.4rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .link__card-list-box .link__card-list .link__card.on {
    width: 100%;
  }
}
.link__card-list-box .link__card-list .link__card.on::after {
  background: rgba(0, 0, 0, 0.3);
}
.link__card-list-box .link__card-list .link__card.on .name {
  color: #ffffff;
}
.link__card-list-box .link__card-list .link__card.on::before {
  width: 100%;
}

.svg-stroke {
  object-fit: contain;
}
.svg-stroke path {
  stroke: currentColor;
}

.svg-fill {
  object-fit: contain;
}
.svg-fill path {
  fill: currentColor;
}

.__hidden_scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.__hidden_scrollbar::-webkit-scrollbar {
  display: none;
}

.__pp_con {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.__pp_con._z1 {
  z-index: 1;
}
.__pp_con > .__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.__resource {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.__resource img,
.__resource video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.__img_con {
  overflow: hidden;
}
.__img_con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.__tc {
  text-align: center;
}

.swiper_container_si .swiper-wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.swiper_container_si .swiper-wrapper .swiper-slide {
  height: initial;
}

@media screen and (min-width: 800px) {
  .__img_scale:hover .__scale_img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.__g_banner {
  color: var(--fcolor-white);
  text-align: center;
}
.__g_banner .__pp_con {
  padding-top: calc(720 / 1920 * 100%);
}
.__g_banner .__pp_con .__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-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_banner .__pp_con .__container .__banner_title {
  font-size: 0.48rem;
  line-height: 0.72rem;
  letter-spacing: 0.04rem;
  font-weight: unset;
  max-width: 7.35rem;
  font-family: "fontFamily-B";
}
.__g_banner.__v1 .__pp_con .__container .__banner_context {
  max-width: 70%;
  font-size: 0.18rem;
  line-height: 0.27rem;
  margin-top: 0.28rem;
  padding-bottom: 0.84rem;
  color: #ffffffb3;
}
.__g_banner.__v2 .__pp_con {
  padding-top: 100vh;
}
.__g_banner.__v2 .__pp_con .__container .__banner_title {
  font-size: 0.56rem;
  line-height: 0.84rem;
  letter-spacing: unset;
  max-width: 7.35rem;
}
.__g_banner.__v2 .__pp_con .__container .__banner_context {
  max-width: unset;
  font-size: 0.24rem;
  line-height: 0.36rem;
  letter-spacing: 0.04rem;
  margin-top: 0.2rem;
  padding-bottom: 0.66rem;
  color: var(--fcolor-white);
}
.__g_banner.__v3 .__pp_con {
  padding-top: 100vh;
}
.__g_banner.__v3 .__pp_con .__container .__banner_title {
  font-size: 0.48rem;
  line-height: 0.64rem;
  letter-spacing: 0.04rem;
  max-width: 7.35rem;
  padding-bottom: 0.56rem;
}

.swiper_container_si {
  position: relative;
}
.swiper_container_si .swiper_btn_box_si .swiper-button-prev,
.swiper_container_si .swiper_btn_box_si .swiper-button-next {
  position: absolute;
  top: 50%;
  left: 0.2rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: unset;
  margin-top: 0;
  width: 0.42rem;
  height: 0.42rem;
  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;
  border-radius: 0.05rem;
  background-color: #0000004d;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper_container_si .swiper_btn_box_si .swiper-button-prev .svg-fill,
.swiper_container_si .swiper_btn_box_si .swiper-button-next .svg-fill {
  color: var(--fcolor-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .swiper_container_si .swiper_btn_box_si .swiper-button-prev:hover,
  .swiper_container_si .swiper_btn_box_si .swiper-button-next:hover {
    background-color: var(--sk-global-color);
  }
  .swiper_container_si .swiper_btn_box_si .swiper-button-prev:hover .svg-fill,
  .swiper_container_si .swiper_btn_box_si .swiper-button-next:hover .svg-fill {
    color: var(--fcolor-white);
  }
}
.swiper_container_si .swiper_btn_box_si .swiper-button-prev.swiper-button-disabled,
.swiper_container_si .swiper_btn_box_si .swiper-button-next.swiper-button-disabled {
  pointer-events: none;
}
.swiper_container_si .swiper_btn_box_si .swiper-button-next {
  left: unset;
  right: 0.2rem;
}
@media screen and (min-width: 800px) {
  .swiper_container_si:hover .swiper_btn_box_si .swiper-button-prev,
  .swiper_container_si:hover .swiper_btn_box_si .swiper-button-next {
    opacity: 1;
  }
}

.swiper_pagination_si {
  position: static;
  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;
  gap: 0.06rem;
}
.swiper_pagination_si .swiper-pagination-bullet {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 0.1rem;
  height: 0.1rem;
  background: #e4e4e4;
  opacity: 1;
}
.swiper_pagination_si .swiper-pagination-bullet-active {
  background: var(--sk-global-color);
}

.__expand_list .__expand_list_item {
  overflow: hidden;
}
.__expand_list .__expand_list_item .__expand_item_top {
  cursor: pointer;
}
.__expand_list .__expand_list_item .__expand_item_top .expand_icon {
  margin-left: 0.2rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.42rem;
  height: 0.42rem;
  background-color: #eaeaea;
  border-radius: 0.05rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.__expand_list .__expand_list_item .__expand_item_top .expand_icon .svg-fill {
  width: 0.12rem;
  height: 0.12rem;
  color: var(--fcolor-defult-02);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .__expand_list .__expand_list_item .__expand_item_top:hover .expand_icon {
    background-color: var(--sk-global-color);
  }
  .__expand_list .__expand_list_item .__expand_item_top:hover .expand_icon .svg-fill {
    color: var(--fcolor-white);
  }
}
.__expand_list .__expand_list_item .__expand_item_bottom {
  height: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.__expand_list .__expand_list_item.active .__expand_item_top .expand_icon {
  background-color: var(--sk-global-color);
}
.__expand_list .__expand_list_item.active .__expand_item_top .expand_icon .svg-fill {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  color: var(--fcolor-white);
}

.-pagination {
  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;
  --w: 0.56rem;
}
.-pagination .prev,
.-pagination .next,
.-pagination .ellipsis,
.-pagination a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: var(--w);
  height: var(--w);
  color: #1e1e1e;
  -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: 0.01rem solid #e6e6e6;
  border-radius: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-pagination .prev svg,
.-pagination .next svg,
.-pagination .ellipsis svg,
.-pagination a svg {
  width: 0.24rem;
  height: 0.24rem;
}
.-pagination .prev svg path,
.-pagination .next svg path,
.-pagination .ellipsis svg path,
.-pagination a svg path {
  fill: none;
  stroke: #a2a1a1;
}
.-pagination .prev:hover,
.-pagination .next:hover,
.-pagination .ellipsis:hover,
.-pagination a:hover {
  color: white;
  border-color: var(--sk-global-color);
  background-color: var(--sk-global-color);
}
.-pagination .prev:hover svg path,
.-pagination .next:hover svg path,
.-pagination .ellipsis:hover svg path,
.-pagination a:hover svg path {
  stroke: white;
}
.-pagination dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0.08rem;
}
.-pagination dl dd {
  margin-right: 0.08rem;
}
.-pagination dl dd:last-child {
  margin-right: 0;
}
.-pagination dl dd.on a {
  color: white;
  border-color: var(--sk-global-color);
  background-color: var(--sk-global-color);
}

.cookie-box {
  position: fixed;
  right: 0.1rem;
  bottom: 0.1rem;
  background-color: var(--fcolor-white);
  border-radius: 0.1rem;
  width: 6.93rem;
  min-height: 1.94rem;
  z-index: 60;
  -webkit-transform: translate(0, calc(100% + 0.1rem));
  -ms-transform: translate(0, calc(100% + 0.1rem));
  transform: translate(0, calc(100% + 0.1rem));
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cookie-box.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.cookie-box .wrapper {
  width: 100%;
  padding: 0.32rem 0.2rem 0.2rem 0.3rem;
}
.cookie-box .wrapper .txt-con {
  padding-right: 0.22rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--fcolor-defult-02);
}
.cookie-box .wrapper .btn-s {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 0.3rem;
}

.__footer_si {
  overflow: hidden;
  position: relative;
  padding-top: 1.17rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: var(--fcolor-white);
  background-color: var(--sk-global-color-02);
}
.__footer_si .__f_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;
}
.__footer_si .__f_top .__f_top_left .nav_box {
  min-height: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
.__footer_si .__f_top .__f_top_left .nav_box .nav_list:first-child {
  margin-right: 0.22rem;
}
.__footer_si .__f_top .__f_top_left .nav_box .nav_list dt {
  margin-bottom: 0.16rem;
  font-family: "fontFamily-M";
}
.__footer_si .__f_top .__f_top_left .nav_box .nav_list dd:not(:last-of-type) {
  margin-bottom: 0.14rem;
}
.__footer_si .__f_top .__f_top_left .nav_box .nav_list dd a {
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #ffffff;
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .__footer_si .__f_top .__f_top_left .nav_box .nav_list dd a:hover {
    opacity: 1;
  }
}
.__footer_si .__f_top .__f_top_right .contact_info .contact_info_item:not(:last-child) {
  margin-bottom: 0.4rem;
}
.__footer_si .__f_top .__f_top_right .contact_info .contact_info_item .key {
  color: #ffffff;
  opacity: 0.6;
}
.__footer_si .__f_top .__f_top_right .contact_info .contact_info_item .value {
  margin-top: 0.2rem;
}
.__footer_si .__f_top .__f_top_right .contact_info .contact_info_item .value a {
  display: block;
  color: #ffffff;
  opacity: 1;
  font-size: 0.24rem;
  line-height: 0.17rem;
  font-family: "fontFamily-TB";
  cursor: default;
}
.__footer_si .__f_top .__f_top_right .contact_info .contact_info_item .value a:not(:last-child) {
  margin-bottom: 0.2rem;
}
.__footer_si .__f_top .__f_top_right .wechat_info {
  margin-top: 0.63rem;
  padding-bottom: 0.9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
.__footer_si .__f_top .__f_top_right .wechat_info .wechat_info_item a .qrcode {
  width: 1rem;
  height: 1rem;
}
.__footer_si .__f_top .__f_top_right .wechat_info .wechat_info_item a .name {
  font-size: 0.14rem;
  line-height: 0.1rem;
  color: #fff;
  opacity: 0.4;
  margin-top: 0.18rem;
  text-align: center;
}
.__footer_si .__f_bottom {
  padding: 0.34rem 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;
}
.__footer_si .__f_bottom a {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #ffffff;
  opacity: 0.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .__footer_si .__f_bottom a:hover {
    opacity: 1;
  }
}
.__footer_si .__f_bottom .__f_bottom_left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.38rem;
  -moz-column-gap: 0.38rem;
  column-gap: 0.38rem;
}
.__footer_si .__f_bottom .__f_bottom_left .copyright,
.__footer_si .__f_bottom .__f_bottom_left .icp {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #ffffff;
  opacity: 0.4;
}
.__footer_si .__f_bottom .__f_bottom_right a {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #ffffff;
  opacity: 0.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.__footer_si .__f_bottom .__f_bottom_right a:not(:last-child) {
  margin-right: 0.4rem;
}
@media screen and (min-width: 800px) {
  .__footer_si .__f_bottom .__f_bottom_right a:hover {
    opacity: 1;
  }
}
.__footer_si .__f_bottom .__f_bottom_right .line {
  display: none;
}

.__back_to_top {
  position: fixed;
  z-index: 40;
  right: 0.3rem;
  bottom: 1.49rem;
  width: 0.48rem;
  height: 0.48rem;
  border: 0.01rem solid var(--sk-global-color);
  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;
  border-radius: 0.03rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.__back_to_top .svg-stroke {
  width: 0.24rem;
  height: 0.24rem;
  color: var(--sk-global-color);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.__back_to_top:hover {
  background-color: var(--sk-global-color);
}
.__back_to_top:hover .svg-stroke {
  color: #ffffff;
}
.__back_to_top.on {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product_center_page .title_section {
  margin-top: 2.32rem;
}
.product_center_page .title_section .--fz-h1 {
  color: #0000004d;
}
.product_center_page .category_tab_section {
  margin-top: 1rem;
}
.product_center_page .category_tab_section .scroll_con .wrapper {
  border-bottom: 0.01rem solid #d3d3d3;
}
.product_center_page .category_tab_section .__tab_list {
  max-width: 15.2rem;
  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;
}
.product_center_page .category_tab_section .__tab_list 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-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_center_page .category_tab_section .__tab_list a img {
  height: 1rem;
  width: auto;
  object-fit: cover;
}
.product_center_page .category_tab_section .__tab_list a .name {
  padding: 0.32rem 0 0.28rem;
  font-size: 0.22rem;
  line-height: 0.3rem;
  color: var(--fcolor-defult-03);
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .product_center_page .category_tab_section .__tab_list a:hover .name {
    color: var(--fcolor-defult);
  }
}
.product_center_page .category_tab_section .__tab_list a.active .name {
  position: relative;
  color: var(--fcolor-defult);
}
.product_center_page .category_tab_section .__tab_list a.active .name::after {
  position: absolute;
  left: 0;
  bottom: -0.015rem;
  content: "";
  display: block;
  width: 100%;
  height: 0.02rem;
  background-color: var(--sk-global-color);
}
.product_center_page .product_list_section {
  padding: 0.4rem 0 1.4rem;
}
.product_center_page .product_list_section .__filter_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.16rem;
}
.product_center_page .product_list_section .__filter_list .__filter_list_item {
  font-size: 0.18rem;
  line-height: 0.27rem;
  padding: 0.12rem 0.18rem;
  min-width: 0.8rem;
  color: var(--fcolor-defult-02);
  letter-spacing: 0.03rem;
  background-color: #f3f3f3;
  text-align: center;
  border-radius: 0.03rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.product_center_page .product_list_section .__filter_list .__filter_list_item:hover {
  background-color: #e4e4e4;
}
.product_center_page .product_list_section .__filter_list .__filter_list_item.active {
  color: var(--fcolor-white);
  background-color: var(--sk-global-color);
}
.product_center_page .product_list_section .product_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-top: 0.4rem;
}
.product_center_page .product_list_section .product_list .product_list_item {
  width: calc((100% - 0.2rem * 3) / 4);
  border-radius: 0.1rem;
  overflow: hidden;
  background: -webkit-radial-gradient(50% 100%, ellipse, #ffffff 0%, #e8e8e8 100%);
  background: radial-gradient(ellipse at 50% 100%, #ffffff 0%, #e8e8e8 100%);
}
.product_center_page .product_list_section .product_list .product_list_item a {
  display: block;
  padding: 0.5rem 0.5rem 0.37rem;
}
.product_center_page .product_list_section .product_list .product_list_item a .__pp_con {
  padding-top: calc(320 / 265 * 100%);
  overflow: visible;
}
.product_center_page .product_list_section .product_list .product_list_item a .name {
  margin-top: 0.38rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  font-family: "fontFamily-M";
  color: var(--fcolor-defult);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product_center_page .product_list_section .product_list .product_list_item:hover a .name {
  color: var(--sk-global-color);
}
@media screen and (min-width: 800px) {
  .product_center_page .product_list_section .product_list .product_list_item:hover .__scale_img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
  }
}
.product_center_page .product_list_section .load_more_btn {
  margin-top: 0.6rem;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.technology_research_page .research_technology {
  padding-top: 1.3rem;
}
.technology_research_page .research_technology .technology_list {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.technology_research_page .research_technology .technology_list .technology_list_item {
  padding: 0.34rem 0.3rem 0.26rem;
  width: calc((100% - 0.2rem * 3) / 4);
  background-color: #f5f5f5;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
}
.technology_research_page .research_technology .technology_list .technology_list_item .svg {
  width: 0.4rem;
  height: 0.4rem;
}
.technology_research_page .research_technology .technology_list .technology_list_item .name {
  margin-top: 0.5rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  font-family: "fontFamily-M";
}
.technology_research_page .research_process {
  padding-top: 1.3rem;
  padding-bottom: 1.4rem;
  overflow: hidden;
}
.technology_research_page .research_process .research_process_con {
  margin-top: 0.48rem;
  height: 5.28rem;
  border-radius: 0.1rem;
}
@media screen and (min-width: 800px) {
  .technology_research_page .research_process .research_process_con .swiper-wrapper {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: url(../image/simon/tr_01.jpg) center center/100% 100% no-repeat;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide {
    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-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 1.87rem;
    color: var(--fcolor-white);
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide:not(:last-child) {
    border-right: 0.02rem solid #ffffff26;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .number {
    font-size: 0.48rem;
    line-height: 0.59rem;
    font-family: "fontFamily-TM";
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .name {
    margin-top: 0.14rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
    font-family: "fontFamily-M";
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .desc_list {
    margin-top: 0.36rem;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .desc_list li {
    position: relative;
    font-size: 0.16rem;
    line-height: 0.26rem;
    padding-left: 0.08rem;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .desc_list li::before {
    position: absolute;
    left: 0;
    top: 0.11rem;
    content: "";
    display: block;
    width: 0.04rem;
    height: 0.04rem;
    border-radius: 50%;
    background-color: var(--fcolor-white);
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide:hover {
    opacity: 1;
    padding-top: 1.47rem;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide:hover .number {
    color: var(--sk-global-color);
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide:hover .desc_list {
    opacity: 1;
  }
}
.technology_research_page .research_equipment {
  padding-top: 1.3rem;
  padding-bottom: 1.4rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.technology_research_page .research_equipment .research_equipment_con {
  margin-top: 0.48rem;
  position: relative;
  overflow: hidden;
}
.technology_research_page .research_equipment .research_equipment_con .swiper-wrapper .swiper-slide {
  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-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.38rem 0;
  background-color: #fff;
  border-radius: 0.1rem;
  cursor: pointer;
}
.technology_research_page .research_equipment .research_equipment_con .swiper-wrapper .swiper-slide .equipment_type {
  position: absolute;
  right: 0.1rem;
  top: 0.1rem;
  padding: 0.05rem 0.11rem;
  font-size: 0.12rem;
  line-height: 0.18rem;
  letter-spacing: 0.02rem;
  color: var(--fcolor-defult-02);
  background-color: #f1f1f1;
  border-radius: 0.03rem;
}
.technology_research_page .research_equipment .research_equipment_con .swiper-wrapper .swiper-slide .equipment_img {
  height: 2rem;
  width: auto;
  margin-top: 0.7rem;
  object-fit: cover;
}
.technology_research_page .research_equipment .research_equipment_con .swiper-wrapper .swiper-slide .equipment_name {
  margin-top: 0.7rem;
  padding: 0 0.25rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  text-align: center;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
.technology_research_page .research_equipment .research_equipment_con .bottom_con {
  margin-top: 0.6rem;
  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;
}
.technology_research_page .research_equipment .research_equipment_con .bottom_con .swiper-pagination {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 3.6rem;
  height: 0.01rem;
  background: #d3d3d3;
}
.technology_research_page .research_equipment .research_equipment_con .bottom_con .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--sk-global-color);
}
.technology_research_page .research_equipment .research_equipment_con .bottom_con .swiper_btn_box_si .swiper-button-prev,
.technology_research_page .research_equipment .research_equipment_con .bottom_con .swiper_btn_box_si .swiper-button-next {
  top: calc((100% - 0.6rem) / 2);
}
.technology_research_page .coating_technology {
  --bg-color: #ffffff1a;
  --text-color: #ffffffb3;
  padding: 1.4rem 0;
  background: url(../image/simon/techno_bg.jpg) center center/100% 100% no-repeat;
  overflow: hidden;
}
.technology_research_page .coating_technology .--fz-h2 {
  color: var(--fcolor-white);
}
.technology_research_page .coating_technology .titanium_alloy_coating {
  margin-top: 0.48rem;
}
.technology_research_page .coating_technology .titanium_alloy_coating .title {
  font-size: 0.32rem;
  line-height: 0.48rem;
  color: var(--fcolor-white);
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top {
  margin-top: 0.34rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_left {
  width: calc(750 / 1520 * 100%);
  border-radius: 0.1rem;
  overflow: hidden;
  margin-right: 0.19rem;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_left ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.05rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 0.01rem;
  color: var(--fcolor-white);
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_left ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 0.05rem) / 2);
  padding: 0.12rem 0.3rem;
  background-color: var(--bg-color);
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_left ul li .key {
  width: 47.68%;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_left ul li .val {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: var(--text-color);
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_right {
  background-color: var(--bg-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.04rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.04rem;
  border-radius: 0.1rem;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_right img {
  object-fit: cover;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_right img:nth-child(1) {
  width: 45.49%;
  height: 2.52rem;
  border-radius: 0.06rem 0 0 0.06rem;
  overflow: hidden;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_right img:nth-child(2) {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 2.52rem;
  border-radius: 0 0.06rem 0.06rem 0;
  overflow: hidden;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._bototm {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.4rem 0.35rem 0.34rem;
  background-color: var(--bg-color);
  border-radius: 0.1rem;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._bototm ._bototm_left {
  width: calc(663 / 1450 * 100%);
  height: 4.22rem;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._bototm ._bototm_right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0.09rem 0 0.16rem 0.67rem;
  padding: 0 0.38rem 0 0.76rem;
  border-left: 0.01rem solid #ffffff26;
}
.technology_research_page .coating_technology .titanium_alloy_coating ._bototm ._bototm_right p {
  margin-top: 1.12rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: var(--text-color);
}
.technology_research_page .coating_technology .performance_comparison {
  margin-top: 1.39rem;
}
.technology_research_page .coating_technology .performance_comparison .title {
  font-size: 0.32rem;
  line-height: 0.48rem;
  color: var(--fcolor-white);
}
.technology_research_page .coating_technology .performance_comparison .coating_list {
  margin-top: 0.4rem;
}
@media (min-width: 800px) {
  .technology_research_page .coating_technology .performance_comparison .coating_list .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item {
    width: calc((100% - 0.2rem * 4) / 5);
    padding: 0.04rem 0.04rem 0.21rem;
    border-radius: 0.1rem;
    background-color: var(--bg-color);
    cursor: pointer;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .__img_con {
    width: 100%;
    height: 1.72rem;
    border-radius: 0.06rem;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .name {
    margin-top: 0.18rem;
    padding: 0 0.16rem;
    font-size: 0.32rem;
    line-height: 0.39rem;
    color: var(--fcolor-white);
    font-family: "fontFamily-TR";
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .info {
    margin-top: 0.29rem;
    padding: 0 0.16rem;
    font-size: 0.14rem;
    line-height: 0.26rem;
    color: var(--text-color);
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .info .info_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;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .info .info_item .line {
    margin: 0 0.08rem;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item:hover .name {
    color: var(--sk-global-color);
  }
}
.technology_research_page .coating_technology .machining_parameter {
  margin-top: 0.72rem;
}
.technology_research_page .coating_technology .machining_parameter .title {
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: var(--fcolor-white);
}
.technology_research_page .coating_technology .machining_parameter ._mid {
  margin-top: 0.18rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: var(--text-color);
  font-size: 0.16rem;
  line-height: 0.26rem;
}
.technology_research_page .coating_technology .machining_parameter ._mid ._mid_left {
  width: calc(569 / 1520 * 100%);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.91rem 1fr;
  grid-template-columns: 1.91rem 1fr;
  -webkit-column-gap: 0.2rem;
  -moz-column-gap: 0.2rem;
  column-gap: 0.2rem;
  border-right: 0.01rem solid #ffffff4d;
}
.technology_research_page .coating_technology .machining_parameter ._mid ._mid_right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 2.01rem;
  margin-top: auto;
}
.technology_research_page .school_enterprise_cooperation {
  padding: 1.3rem 0 1.4rem;
  overflow: hidden;
}
.technology_research_page .school_enterprise_cooperation .wal {
  position: relative;
}
.technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con {
  margin-top: 0.48rem;
  overflow: hidden;
}
.technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a {
  display: block;
  padding: 0.4rem;
  height: 100%;
  background-color: #f5f5f5ff;
  border-radius: 0.1rem;
}
.technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a ._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;
}
.technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a ._top .school_name {
  margin-top: 0.22rem;
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: "fontFamily-M";
}
.technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a ._top .school_icon {
  width: 1rem;
  height: 1rem;
}
.technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a .project_name {
  margin-top: 0.74rem;
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-M";
  color: var(--sk-global-color);
}
.technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a .project_desc {
  margin-top: 0.2rem;
  margin-bottom: 0.07rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: var(--fcolor-defult-02);
}

.service_support_page .download_list_section {
  padding: 2.32rem 0 1.4rem;
}
.service_support_page .download_list_section .--fz-h1 {
  color: #0000004d;
}
.service_support_page .download_list_section .download_list {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.service_support_page .download_list_section .download_list .download_list_item {
  width: calc((100% - 0.3rem * 2) / 3);
  overflow: hidden;
}
.service_support_page .download_list_section .download_list .download_list_item a {
  display: block;
}
.service_support_page .download_list_section .download_list .download_list_item a .__pp_con {
  border-radius: 0.1rem;
}
.service_support_page .download_list_section .download_list .download_list_item a .__pp_con .__container {
  padding: 0.37rem;
  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;
}
.service_support_page .download_list_section .download_list .download_list_item a .__pp_con .__container .name {
  margin-top: auto;
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
  text-align: center;
}
.service_support_page .download_list_section .download_list .download_list_item a .__pp_con .download_icon {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  width: 0.48rem;
  height: 0.48rem;
  background-color: #fff;
  border-radius: 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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service_support_page .download_list_section .download_list .download_list_item a .__pp_con .download_icon .svg-fill {
  width: 0.15rem;
  height: 0.15rem;
  color: var(--fcolor-defult-02);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .service_support_page .download_list_section .download_list .download_list_item:hover a .__pp_con .download_icon {
    background-color: var(--sk-global-color);
  }
  .service_support_page .download_list_section .download_list .download_list_item:hover a .__pp_con .download_icon .svg-fill {
    color: var(--fcolor-white);
  }
}
.service_support_page .download_list_section .download_list .download_list_item.more_profile a {
  cursor: default;
}
.service_support_page .download_list_section .download_list .download_list_item.more_profile a .__pp_con .__container {
  background-color: #f5f5f5;
}
.service_support_page .download_list_section .download_list .download_list_item.more_profile a .__pp_con .__container .msg {
  margin: auto;
  font-size: 0.24rem;
  line-height: 0.28rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
  color: var(--fcolor-defult-03);
  text-align: center;
}
.service_support_page .faq_section {
  padding: 1.4rem 0;
  background-color: #f5f5f5;
}
.service_support_page .faq_section .wal {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.service_support_page .faq_section .wal ._left {
  position: -webkit-sticky;
  position: sticky;
  top: var(--headH);
  width: calc(620 / 1520 * 100%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.service_support_page .faq_section .wal ._left .--fz-h2 {
  font-family: "fontFamily-TB";
  letter-spacing: 0.04rem;
}
.service_support_page .faq_section .wal ._left .__tab_list {
  margin-top: 0.59rem;
  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;
  gap: 0.3rem;
}
.service_support_page .faq_section .wal ._left .__tab_list .__tab_list_item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: var(--fcolor-defult-03);
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
.service_support_page .faq_section .wal ._left .__tab_list .__tab_list_item.active {
  color: var(--fcolor-defult);
}
@media screen and (min-width: 800px) {
  .service_support_page .faq_section .wal ._left .__tab_list .__tab_list_item:hover {
    color: var(--fcolor-defult);
  }
}
.service_support_page .faq_section .wal ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item {
  background-color: var(--fcolor-white);
  border-radius: 0.1rem;
}
.service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item:not(:last-child) {
  margin-bottom: 0.1rem;
}
.service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item .__expand_item_top {
  padding: 0.19rem 0.2rem 0.19rem 0.3rem;
  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;
}
.service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item .__expand_item_top .title {
  font-size: 0.18rem;
  line-height: 0.27rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.01rem;
}
.service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item .__expand_item_bottom .container {
  padding: 0.28rem 1.12rem 0.39rem 0.3rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: var(--fcolor-defult-02);
}
.service_support_page .consulting_section {
  padding-bottom: 1.4rem;
  background-color: #f5f5f5;
}
.service_support_page .consulting_section .consulting_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service_support_page .consulting_section .consulting_list .consulting_list_item {
  width: calc((100% - 0.4rem) / 2);
  border-radius: 0.1rem;
  overflow: hidden;
}
.service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con {
  padding-top: calc(360 / 740 * 100%);
}
.service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container {
  padding: 0.2rem;
}
.service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container .mask {
  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: calc(320 / 700 * 100%);
  padding: 0.34rem 0.3rem 0.5rem;
  height: 100%;
  background-color: #0000001a;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.1rem;
}
.service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container .mask .name {
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-M";
  color: var(--fcolor-white);
  letter-spacing: 0.02rem;
}
.service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container .mask .desc {
  margin-top: 0.14rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #ffffffb3;
}
.service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container .mask .hry__btn {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.join_us_page .professional_career {
  padding-top: 2.32rem;
}
.join_us_page .professional_career .--fz-h1 {
  color: #0000004d;
}
.join_us_page .professional_career .career_list {
  margin-top: 0.96rem;
}
.join_us_page .professional_career .career_list .career_list_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.56rem;
}
.join_us_page .professional_career .career_list .career_list_item:not(:last-child) {
  margin-bottom: 1rem;
}
.join_us_page .professional_career .career_list .career_list_item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.join_us_page .professional_career .career_list .career_list_item ._left {
  width: calc(740 / 1520 * 100%);
  border-radius: 0.1rem;
  overflow: hidden;
}
.join_us_page .professional_career .career_list .career_list_item ._left .__pp_con {
  padding-top: calc(483 / 740 * 100%);
}
.join_us_page .professional_career .career_list .career_list_item ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.join_us_page .professional_career .career_list .career_list_item ._right .name {
  margin-top: 1.3rem;
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.03rem;
}
.join_us_page .professional_career .career_list .career_list_item ._right .desc {
  margin-top: 0.18rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--fcolor-defult-02);
}
.join_us_page .recruitment_position {
  padding: 0.5rem 0;
}
.join_us_page .recruitment_position .wal {
  padding: 0.9rem 0;
}
.join_us_page .recruitment_position .position_list {
  margin-top: 0.48rem;
}
.join_us_page .recruitment_position .position_list .position_list_item {
  border-bottom: 0.01rem solid #d3d3d3;
}
.join_us_page .recruitment_position .position_list .position_list_item:first-child {
  border-top: 0.01rem solid #d3d3d3;
}
.join_us_page .recruitment_position .position_list .position_list_item .__expand_item_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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.32rem 0.3rem 0.31rem;
}
.join_us_page .recruitment_position .position_list .position_list_item .__expand_item_top ._left .name {
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: "fontFamily-M";
}
.join_us_page .recruitment_position .position_list .position_list_item .__expand_item_top ._left .tag_list {
  margin-top: 0.14rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0.18rem;
  line-height: 0.27rem;
  color: var(--fcolor-defult-02);
}
.join_us_page .recruitment_position .position_list .position_list_item .__expand_item_top ._left .tag_list .line {
  margin: 0 0.09rem;
}
.join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container {
  padding: 0.32rem 0.3rem 0.65rem;
}
.join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container .key_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.48rem;
}
.join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container .key_content .key {
  width: calc(524 / 1460 * 100%);
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #171a20;
  font-family: "fontFamily-M";
}
.join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container .key_content .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 0.92rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: var(--fcolor-defult-02);
}
.join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container .hry__btn {
  margin-left: calc(524 / 1460 * 100%);
}

.contact_us_page .contact_info_section {
  margin: 2.32rem 0 1.47rem;
}
.contact_us_page .contact_info_section .--fz-h1 {
  color: #0000004d;
}
.contact_us_page .contact_info_section .company_info {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.contact_us_page .contact_info_section .company_info ._left {
  width: calc(746 / 1520 * 100%);
  margin-right: 1.48rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.contact_us_page .contact_info_section .company_info ._left .__pp_con .pin {
  position: absolute;
  width: 0.46rem;
  height: 0.63rem;
  left: calc(360 / 746 * 100%);
  top: calc(276 / 746 * 100%);
  cursor: pointer;
}
.contact_us_page .contact_info_section .company_info ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
}
.contact_us_page .contact_info_section .company_info ._right ._right_top .company_name {
  margin-top: 0.38rem;
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.03rem;
}
.contact_us_page .contact_info_section .company_info ._right ._right_top .company_address {
  margin-top: 0.18rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: var(--fcolor-defult-02);
}
.contact_us_page .contact_info_section .company_info ._right ._right_top .hry__btn {
  margin-top: 0.48rem;
}
.contact_us_page .contact_info_section .company_info ._right ._right_bottom {
  margin-top: auto;
  margin-bottom: 0.41rem;
}
.contact_us_page .contact_info_section .company_info ._right ._right_bottom .contact_info_list > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact_us_page .contact_info_section .company_info ._right ._right_bottom .contact_info_list > li:not(:last-child) {
  margin-bottom: 0.28rem;
}
.contact_us_page .contact_info_section .company_info ._right ._right_bottom .contact_info_list > li .key {
  margin-top: 0.04rem;
  margin-right: 0.19rem;
  width: 0.32rem;
  height: 0.32rem;
  color: var(--fcolor-defult-03);
}
.contact_us_page .contact_info_section .company_info ._right ._right_bottom .contact_info_list > li .val_list {
  font-size: 0.24rem;
  line-height: 0.36rem;
  letter-spacing: 0.02rem;
  font-family: "fontFamily-TB";
}
.contact_us_page .contact_info_section .company_info ._right ._right_bottom .contact_info_list > li.fax .key {
  margin-top: 0.01rem;
}
.contact_us_page .contact_info_section .contacts_list {
  margin-top: 0.87rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
.contact_us_page .contact_info_section .contacts_list li {
  width: calc((100% - 0.2rem * 4) / 5);
  padding: 0.25rem 0.24rem 0.21rem;
  background-color: #f5f5f5;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
}
.contact_us_page .contact_info_section .contacts_list li .address {
  font-size: 0.24rem;
  line-height: 0.36rem;
  letter-spacing: 0.02rem;
  font-family: "fontFamily-M";
  color: var(--sk-global-color);
}
.contact_us_page .contact_info_section .contacts_list li .name {
  margin-top: 0.37rem;
  font-size: 0.18rem;
  line-height: 0.27rem;
  font-family: "fontFamily-M";
}
.contact_us_page .contact_info_section .contacts_list li .phone {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: var(--fcolor-defult-02);
}
.contact_us_page .online_message_section .__pp_con {
  padding-top: calc(960 / 1920 * 100%);
}
.contact_us_page .online_message_section .__pp_con .__container .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 2.1rem;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._left .title {
  font-size: 0.36rem;
  line-height: 0.54rem;
  color: var(--fcolor-white);
  font-family: "fontFamily-B";
  letter-spacing: 0.03rem;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._left .desc {
  margin-top: 0.28rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #ffffffb3;
  max-width: 5.36rem;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right {
  margin-top: 1.54rem;
  width: calc(540 / 1520 * 100%);
  padding: 0.65rem 0.4rem 0.79rem;
  background-color: #00000033;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 0.1rem;
  overflow: hidden;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .title {
  font-size: 0.24rem;
  line-height: 0.36rem;
  color: var(--fcolor-white);
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con {
  padding-top: 0.02rem;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item {
  margin-top: 0.39rem;
  position: relative;
  border-radius: 0.06rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item .svg-stroke {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: #ffffff4d;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item:focus-within .svg-stroke {
  color: #ffffff99;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item .label {
  position: absolute;
  left: 0.18rem;
  top: -0.08rem;
  padding: 0 0.18rem;
  font-size: 0.12rem;
  line-height: 0.18rem;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item .label::before {
  content: "*";
  color: red;
  position: absolute;
  left: 0.08rem;
  top: 0rem;
  font-size: 0.12rem;
  line-height: 0.18rem;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input,
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea {
  width: 100%;
  margin: 0.14rem 0;
  padding: 0 0.2rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: "fontFamily-R";
  color: #fff;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input input::-webkit-input-placeholder,
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea input::-webkit-input-placeholder {
  color: #fff;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input input::-moz-placeholder,
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea input::-moz-placeholder {
  color: #fff;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input input:-moz-placeholder,
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea input:-moz-placeholder {
  color: #fff;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input input:-ms-input-placeholder,
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea input:-ms-input-placeholder {
  color: #fff;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input textarea::-webkit-input-placeholder,
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea textarea::-webkit-input-placeholder {
  color: #fff;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input textarea::-moz-placeholder,
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea textarea::-moz-placeholder {
  color: #fff;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input textarea:-moz-placeholder,
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea textarea:-moz-placeholder {
  color: #fff;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input textarea:-ms-input-placeholder,
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea textarea:-ms-input-placeholder {
  color: #fff;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea {
  margin: 0.22rem 0;
  resize: none;
}
.contact_us_page .online_message_section .__pp_con .__container .wal ._right .hry__btn {
  margin-top: 0.3rem;
  width: 100%;
}

.search_result_page {
  padding: 2.32rem 0 1.4rem;
}
.search_result_page .search_input_section {
  margin-top: 0.72rem;
}
.search_result_page .search_input_section .wal {
  max-width: 9.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
.search_result_page .search_input_section .wal input {
  padding: 0.16rem 0.2rem 0.11rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #f5f5f5;
  border-radius: 0.08rem;
  font-size: 0.18rem;
  line-height: 0.27rem;
  color: var(--fcolor-black);
}
.search_result_page .search_input_section .wal input input::-webkit-input-placeholder {
  color: #999999;
}
.search_result_page .search_input_section .wal input input::-moz-placeholder {
  color: #999999;
}
.search_result_page .search_input_section .wal input input:-moz-placeholder {
  color: #999999;
}
.search_result_page .search_input_section .wal input input:-ms-input-placeholder {
  color: #999999;
}
.search_result_page .search_input_section .wal input textarea::-webkit-input-placeholder {
  color: #999999;
}
.search_result_page .search_input_section .wal input textarea::-moz-placeholder {
  color: #999999;
}
.search_result_page .search_input_section .wal input textarea:-moz-placeholder {
  color: #999999;
}
.search_result_page .search_input_section .wal input textarea:-ms-input-placeholder {
  color: #999999;
}
.search_result_page .search_input_section .wal .search_btn {
  width: 1.6rem;
  background-color: var(--sk-global-color);
  padding: 0.14rem 0 0.13rem;
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.27rem;
  letter-spacing: 0.03rem;
  color: var(--fcolor-white);
  font-family: "fontFamily-M";
  border-radius: 0.08rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .search_result_page .search_input_section .wal .search_btn:hover {
    background-color: var(--sk-global-color-hover);
  }
}
.search_result_page .result_list_section {
  margin-top: 0.89rem;
}
.search_result_page .result_list_section .wal {
  max-width: 12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.search_result_page .result_list_section .wal ._left {
  width: 3rem;
}
.search_result_page .result_list_section .wal ._left .__tab_list {
  position: -webkit-sticky;
  position: sticky;
  top: var(--headH);
}
.search_result_page .result_list_section .wal ._left .__tab_list .__tab_list_item {
  display: block;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: var(--fcolor-defult-03);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search_result_page .result_list_section .wal ._left .__tab_list .__tab_list_item:not(:last-child) {
  margin-bottom: 0.2rem;
}
.search_result_page .result_list_section .wal ._left .__tab_list .__tab_list_item:hover, .search_result_page .result_list_section .wal ._left .__tab_list .__tab_list_item.active {
  color: var(--fcolor-defult);
}
.search_result_page .result_list_section .wal ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.search_result_page .result_list_section .wal ._right .count_info {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: "fontFamily-M";
}
.search_result_page .result_list_section .wal ._right .count_info .keyword,
.search_result_page .result_list_section .wal ._right .count_info .count {
  color: var(--sk-global-color);
}
.search_result_page .result_list_section .wal ._right .result_list {
  margin-top: 0.41rem;
}
.search_result_page .result_list_section .wal ._right .result_list li a {
  display: block;
  padding: 0.31rem 0 0.34rem;
  border-top: 0.01rem solid #dddddd;
}
.search_result_page .result_list_section .wal ._right .result_list li a p {
  font-size: 0.2rem;
  line-height: 0.3rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
  color: var(--fcolor-black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search_result_page .result_list_section .wal ._right .result_list li a:hover p {
  color: var(--sk-global-color);
}
.search_result_page .result_list_section .wal ._right .result_list li:last-of-type a {
  border-bottom: 0.01rem solid #dddddd;
}

.solution_page_1 .__g_banner ._enter_con {
  width: 100%;
  position: absolute;
  bottom: 0.2rem;
}
.solution_page_1 .__g_banner ._enter_con .__tab_list {
  background-color: #00000033;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 0.06rem;
  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;
}
.solution_page_1 .__g_banner ._enter_con .__tab_list .__tab_list_item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.solution_page_1 .__g_banner ._enter_con .__tab_list .__tab_list_item a {
  display: block;
  padding: 0.13rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.01rem;
  color: #ffffffb3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.solution_page_1 .__g_banner ._enter_con .__tab_list .__tab_list_item.active a {
  color: #ffffff;
}
@media screen and (min-width: 800px) {
  .solution_page_1 .__g_banner ._enter_con .__tab_list .__tab_list_item:hover a {
    color: #ffffff;
  }
}
.solution_page_1 .__g_banner ._enter_con .__tab_list .line {
  width: 0.01rem;
  height: 0.25rem;
  background-color: #ffffffb3;
}
.solution_page_1 .application_scenario {
  padding: 1.4rem 0;
}
.solution_page_1 .application_scenario .--fz-h2 {
  text-align: center;
}
.solution_page_1 .application_scenario .scenario_list {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.33rem;
}
.solution_page_1 .application_scenario .scenario_list .scenario_list_item {
  width: calc((100% - 0.33rem * 2) / 3);
  border: 0.01rem solid #d3d3d3;
  border-radius: 0.1rem;
  overflow: hidden;
}
.solution_page_1 .application_scenario .scenario_list .scenario_list_item .__pp_con {
  padding-top: calc(273 / 485 * 100%);
}
.solution_page_1 .application_scenario .scenario_list .scenario_list_item .name {
  margin-top: 0.34rem;
  padding: 0 0.3rem;
  font-size: 0.28rem;
  line-height: 0.42rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
}
.solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list {
  margin-top: 0.27rem;
  padding: 0 0.31rem 0.31rem;
}
.solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list .link_list_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;
  font-size: 0.2rem;
  line-height: 0.3rem;
  font-family: "fontFamily-M";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list .link_list_item:not(:first-child) {
  margin-top: 0.11rem;
}
.solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list .link_list_item .svg-fill {
  margin-left: 0.11rem;
  width: 0.16rem;
  height: 0.16rem;
  color: var(--fcolor-defult);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list .link_list_item:hover {
  color: var(--sk-global-color);
}
.solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list .link_list_item:hover .svg-fill {
  color: var(--sk-global-color);
}

.privacy_policy_page .detail_section {
  margin: 2.32rem 0 1.11rem;
}
.privacy_policy_page .detail_section .wal {
  max-width: 10rem;
}
.privacy_policy_page .detail_section .wal .detail {
  margin-top: 0.49rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--fcolor-defult-02);
}

.not_found_page .not_found {
  width: 100vw;
  height: 100vh;
}
.not_found_page .not_found .wal {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.not_found_page .not_found .wal .hint_img {
  width: 5rem;
  height: 3.73rem;
}
.not_found_page .not_found .wal .hint_msg {
  margin-top: 0.45rem;
  font-size: 0.24rem;
  line-height: 0.36rem;
  letter-spacing: 0.02rem;
  color: var(--fcolor-defult-03);
}
.not_found_page .not_found .wal .btn_box {
  margin-top: 0.76rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}

.news_center_page .swiper_news_section {
  margin-top: 2.32rem;
}
.news_center_page .swiper_news_section .--fz-h1 {
  color: #0000004d;
}
.news_center_page .swiper_news_section .swiper_news_con {
  margin-top: 0.96rem;
  overflow: hidden;
}
.news_center_page .swiper_news_section .swiper_news_con .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}
.news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._left {
  width: calc(760 / 1520 * 100%);
  border-radius: 0.1rem;
  overflow: hidden;
}
.news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._left .__pp_con {
  padding-top: calc(427.5 / 760 * 100%);
}
.news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._right .title {
  margin-top: 0.5rem;
  padding-right: 0.2rem;
  font-size: 0.32rem;
  line-height: 0.48rem;
  letter-spacing: 0.03rem;
  font-family: "fontFamily-M";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._right .publish_time {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 0.01rem;
  color: var(--fcolor-defult-03);
}
.news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._right .desc {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: var(--fcolor-defult-02);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._right .hry__btn {
  margin-top: 0.48rem;
}
.news_center_page .swiper_news_section .swiper_news_con .swiper_pagination_si {
  margin-top: 0.5rem;
}
.news_center_page .news_list_section {
  margin-top: 0.9rem;
  padding-bottom: 1.4rem;
}
.news_center_page .news_list_section .news_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 0.21rem;
  -moz-column-gap: 0.21rem;
  column-gap: 0.21rem;
  row-gap: 0.2rem;
}
.news_center_page .news_list_section .news_list .news_list_item {
  width: calc((100% - 0.21rem * 2) / 3);
  border-radius: 0.1rem;
  overflow: hidden;
}
.news_center_page .news_list_section .news_list .news_list_item a .__pp_con {
  padding-top: calc(277.31 / 493 * 100%);
}
.news_center_page .news_list_section .news_list .news_list_item a .info {
  padding: 0.35rem 0.3rem 0.45rem;
  background-color: #f6f6f6;
}
.news_center_page .news_list_section .news_list .news_list_item a .info .news_title {
  font-size: 0.2rem;
  line-height: 0.3rem;
  font-family: "fontFamily-M";
  letter-spacing: 0.02rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  min-height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news_center_page .news_list_section .news_list .news_list_item a .info .publist_time {
  margin-top: 0.23rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--fcolor-defult-03);
}
@media screen and (min-width: 800px) {
  .news_center_page .news_list_section .news_list .news_list_item a:hover .info .news_title {
    color: var(--sk-global-color);
  }
}
.news_center_page .news_list_section .-pagination {
  margin-top: 0.6rem;
}

.stay_tuned_page .stay_tuned_section {
  width: 100%;
  height: 100vh;
}
.stay_tuned_page .stay_tuned_section .wal {
  height: 100%;
  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-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;
}
.stay_tuned_page .stay_tuned_section .wal .__img_con {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.stay_tuned_page .stay_tuned_section .wal .tit {
  padding-top: 0.18rem;
  font-size: 0.48rem;
  line-height: 0.64rem;
  font-family: "fontFamily-B";
  letter-spacing: 0.03rem;
}
.stay_tuned_page .stay_tuned_section .wal .hry__btn {
  margin-top: 0.34rem;
}

@media screen and (max-width: 800px) {
  .__g_banner .__pp_con {
    padding-top: calc(960 / 750 * 100%);
  }
  .__g_banner .__pp_con .__container {
    padding: 0 0.4rem;
    padding-bottom: 1rem;
  }
  .__g_banner .__pp_con .__container .__banner_title {
    font-size: 0.64rem;
    line-height: 0.96rem;
    letter-spacing: 0.06rem;
    max-width: unset;
  }
  .__g_banner.__v1 .__pp_con .__container {
    padding-bottom: 0;
  }
  .__g_banner.__v1 .__pp_con .__container .__banner_context {
    max-width: unset;
    font-size: 0.26rem;
    line-height: 0.39rem;
    margin-top: 0.32rem;
    padding-bottom: 0.65rem;
  }
  .__g_banner.__v2 .__pp_con .__container {
    padding-top: 4.22rem;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
  .__g_banner.__v2 .__pp_con .__container .__banner_title {
    font-size: 0.64rem;
    line-height: 0.96rem;
    letter-spacing: 0.06rem;
    max-width: unset;
  }
  .__g_banner.__v2 .__pp_con .__container .__banner_context {
    max-width: unset;
    padding: 0 0.3rem;
    font-size: 0.36rem;
    line-height: 0.54rem;
    letter-spacing: 0.07rem;
    margin-top: 0.36rem;
    padding-bottom: 0;
  }
  .__g_banner.__v3 .__pp_con .__container {
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    padding-top: 3.74rem;
  }
  .__g_banner.__v3 .__pp_con .__container .__banner_title {
    padding: 0 0.4rem;
    font-size: 0.64rem;
    line-height: 0.96rem;
    letter-spacing: 0.06rem;
    max-width: unset;
    padding-bottom: 0;
  }

  .swiper_btn_box_si {
    gap: 0.2rem;
  }
  .swiper_btn_box_si .swiper-button-prev,
  .swiper_btn_box_si .swiper-button-next {
    width: 0.72rem;
    height: 0.72rem;
  }

  .swiper_container_si .swiper_btn_box_si {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .swiper_container_si .swiper_btn_box_si .swiper-button-prev,
  .swiper_container_si .swiper_btn_box_si .swiper-button-next {
    position: static;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
    width: 0.72rem;
    height: 0.72rem;
    background-color: transparent;
    border: 0.02rem solid #e4e4e4;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
    opacity: 1;
  }
  .swiper_container_si .swiper_btn_box_si .swiper-button-prev .svg-fill,
  .swiper_container_si .swiper_btn_box_si .swiper-button-next .svg-fill {
    color: var(--fcolor-defult-03);
  }

  .__expand_list .__expand_list_item .__expand_item_top .expand_icon {
    margin-left: 1.09rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.08rem;
  }
  .__expand_list .__expand_list_item .__expand_item_top .expand_icon .svg-fill {
    width: 0.2rem;
    height: 0.2rem;
  }

  .-pagination {
    margin-top: 0.8rem;
    --w: 0.85rem;
  }
  .-pagination .prev,
  .-pagination .next,
  .-pagination .ellipsis,
  .-pagination a {
    border: 0.02rem solid #e6e6e6;
    font-size: 0.26rem;
    line-height: 0.36rem;
  }
  .-pagination .prev svg,
  .-pagination .next svg,
  .-pagination .ellipsis svg,
  .-pagination a svg {
    width: 0.36rem;
    height: 0.36rem;
  }
  .-pagination dl {
    margin: 0 0.12rem;
  }
  .-pagination dl dd {
    margin-right: 0.12rem;
  }

  .swiper_pagination_si {
    position: static;
    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;
    gap: 0.1rem;
  }
  .swiper_pagination_si .swiper-pagination-bullet {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 0.16rem;
    height: 0.16rem;
    background: #e4e4e4;
    opacity: 1;
  }
  .swiper_pagination_si .swiper-pagination-bullet-active {
    background: var(--sk-global-color);
  }

  .cookie-box {
    right: 0.2rem;
    bottom: 0.2rem;
    border-radius: 0.2rem;
    width: calc(100% - 0.4rem);
    -webkit-transform: translate(0, calc(100% + 0.2rem));
    -ms-transform: translate(0, calc(100% + 0.2rem));
    transform: translate(0, calc(100% + 0.2rem));
  }
  .cookie-box .wrapper {
    padding: 0.47rem 0.4rem 0.53rem 0.4rem;
  }
  .cookie-box .wrapper .txt-con {
    padding-right: 0;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .cookie-box .wrapper .btn-s {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    margin-top: 0.44rem;
  }
  .cookie-box .wrapper .btn-s .hry__btn {
    min-width: unset;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .__footer_si {
    padding-top: 0.6rem;
    font-size: 0.26rem;
    line-height: 0.42rem;
    color: #ffffff99;
  }
  .__footer_si::before {
    left: 0;
    bottom: 0;
    width: 4rem;
    height: 4rem;
    -webkit-filter: blur(160px);
    filter: blur(160px);
  }
  .__footer_si .__f_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .__footer_si .__f_top .__f_top_left .nav_box {
    min-height: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .__footer_si .__f_top .__f_top_left .nav_box .nav_list {
    height: 1.2rem;
    overflow: hidden;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
  }
  .__footer_si .__f_top .__f_top_left .nav_box .nav_list:first-child {
    margin-right: 0;
  }
  .__footer_si .__f_top .__f_top_left .nav_box .nav_list dt {
    position: relative;
    margin-bottom: 0;
    padding: 0.39rem 0;
    font-size: 0.28rem;
    line-height: 0.42rem;
    padding-right: 0.42rem;
  }
  .__footer_si .__f_top .__f_top_left .nav_box .nav_list dt::after {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 0.24rem;
    height: 0.24rem;
    background: url(../image/svg/expand.svg) center center/100% 100% no-repeat;
  }
  .__footer_si .__f_top .__f_top_left .nav_box .nav_list dd:not(:last-of-type) {
    margin-bottom: 0;
  }
  .__footer_si .__f_top .__f_top_left .nav_box .nav_list dd a {
    display: block;
    padding: 0.18rem 0 0.18rem 0.3rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .__footer_si .__f_top .__f_top_left .nav_box .nav_list.active dt::after {
    background: url(../image/svg/close.svg) center center/100% 100% no-repeat;
  }
  .__footer_si .__f_top .__f_top_right {
    margin-top: 0.77rem;
  }
  .__footer_si .__f_top .__f_top_right .contact_info .contact_info_item .key {
    font-size: 0.26rem;
    line-height: 0.28rem;
  }
  .__footer_si .__f_top .__f_top_right .contact_info .contact_info_item .value {
    margin-top: 0.4rem;
  }
  .__footer_si .__f_top .__f_top_right .contact_info .contact_info_item .value a {
    font-size: 0.4rem;
    line-height: 0.28rem;
  }
  .__footer_si .__f_top .__f_top_right .contact_info .contact_info_item .value a:not(:last-child) {
    margin-bottom: 0.4rem;
  }
  .__footer_si .__f_top .__f_top_right .wechat_info {
    margin-top: 1rem;
    padding-bottom: 0.16rem;
    gap: 0.47rem;
  }
  .__footer_si .__f_top .__f_top_right .wechat_info .wechat_info_item a .qrcode {
    width: 1.8rem;
    height: 1.8rem;
  }
  .__footer_si .__f_top .__f_top_right .wechat_info .wechat_info_item a .name {
    font-size: 0.26rem;
    line-height: 0.3rem;
    margin-top: 0.33rem;
  }
  .__footer_si .__f_bottom {
    padding: 1.03rem 0 0.9rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .__footer_si .__f_bottom a {
    font-size: 0.26rem;
    line-height: 0.39rem;
    color: #666666;
    opacity: 1;
  }
  .__footer_si .__f_bottom .__f_bottom_left {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 0.59rem;
    -moz-column-gap: 0.59rem;
    column-gap: 0.59rem;
    row-gap: 0.24rem;
    margin-top: 0.3rem;
  }
  .__footer_si .__f_bottom .__f_bottom_left .copyright,
  .__footer_si .__f_bottom .__f_bottom_left .icp {
    font-size: 0.26rem;
    line-height: 0.39rem;
    color: #666666;
    opacity: 1;
  }
  .__footer_si .__f_bottom .__f_bottom_left .support {
    text-decoration: underline;
  }
  .__footer_si .__f_bottom .__f_bottom_right a {
    font-size: 0.26rem;
    line-height: 0.39rem;
    color: #666666;
    opacity: 1;
  }
  .__footer_si .__f_bottom .__f_bottom_right a:not(:last-child) {
    margin-right: 0;
  }
  .__footer_si .__f_bottom .__f_bottom_right .line {
    display: inline;
    margin: 0 0.18rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    color: #666666;
    opacity: 1;
  }

  .__back_to_top {
    right: 0.3rem;
    bottom: 2.78rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.06rem;
    background-color: var(--sk-global-color);
  }
  .__back_to_top .svg-stroke {
    width: 0.32rem;
    height: 0.32rem;
    color: #ffffff;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .product_center_page .title_section {
    margin-top: 2.55rem;
  }
  .product_center_page .title_section .--fz-h1 {
    font-size: var(--fz-h2);
    line-height: var(--lh-h2);
  }
  .product_center_page .title_section .--fz-h1 br {
    display: none;
  }
  .product_center_page .category_tab_section {
    margin-top: 1.21rem;
  }
  .product_center_page .category_tab_section .scroll_con {
    overflow-x: auto;
    padding-bottom: 0.01rem;
  }
  .product_center_page .category_tab_section .scroll_con .wrapper {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .product_center_page .category_tab_section .__tab_list {
    gap: 0.98rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .product_center_page .category_tab_section .__tab_list a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .product_center_page .category_tab_section .__tab_list a img {
    height: 1.3rem;
  }
  .product_center_page .category_tab_section .__tab_list a .name {
    padding: 0.28rem 0 0.48rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .product_center_page .category_tab_section .__tab_list a.active ::after {
    bottom: -0.03rem;
    height: 0.04rem;
  }
  .product_center_page .product_list_section {
    padding: 1rem 0 2rem;
  }
  .product_center_page .product_list_section .__filter_list {
    gap: 0.2rem;
  }
  .product_center_page .product_list_section .__filter_list .__filter_list_item {
    font-size: 0.24rem;
    line-height: 0.36rem;
    letter-spacing: 0.04rem;
    padding: 0.22rem 0.445rem;
    min-width: unset;
    border-radius: 0.08rem;
  }
  .product_center_page .product_list_section .product_list {
    -webkit-column-gap: 0.2rem;
    -moz-column-gap: 0.2rem;
    column-gap: 0.2rem;
    row-gap: 0.4rem;
    margin-top: 0.6rem;
  }
  .product_center_page .product_list_section .product_list .product_list_item {
    width: calc((100% - 0.2rem) / 2);
  }
  .product_center_page .product_list_section .product_list .product_list_item a {
    display: block;
    padding: 0.3rem 0.445rem 0.3rem;
  }
  .product_center_page .product_list_section .product_list .product_list_item a .__pp_con {
    padding-top: calc(285 / 236 * 100%);
  }
  .product_center_page .product_list_section .product_list .product_list_item a .name {
    margin-top: 0.36rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }

  .technology_research_page .research_technology {
    padding-top: 2rem;
  }
  .technology_research_page .research_technology .technology_list {
    margin-top: 0.69rem;
    -webkit-column-gap: 0.2rem;
    -moz-column-gap: 0.2rem;
    column-gap: 0.2rem;
    row-gap: 0.3rem;
  }
  .technology_research_page .research_technology .technology_list .technology_list_item {
    padding: 0.44rem 0.3rem 0.4rem;
    width: calc((100% - 0.2rem) / 2);
    border-radius: 0.2rem;
  }
  .technology_research_page .research_technology .technology_list .technology_list_item .svg {
    width: 0.56rem;
    height: 0.56rem;
  }
  .technology_research_page .research_technology .technology_list .technology_list_item .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .technology_research_page .research_process {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .technology_research_page .research_process .research_process_con {
    margin-top: 0.6rem;
    padding-bottom: 0.83rem;
    height: 7.8rem;
    border-radius: unset;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper {
    height: 100%;
    background: url(../image/simon/tr_01.jpg) center center/100% 100% no-repeat;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide {
    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;
    padding-top: 1.87rem;
    color: var(--fcolor-white);
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide:not(:last-child) {
    border-right: 0.02rem solid #ffffff26;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .number {
    font-size: 0.72rem;
    line-height: 0.88rem;
    font-family: "fontFamily-TM";
    color: var(--sk-global-color);
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .name {
    margin-top: 0.15rem;
    font-size: 0.36rem;
    line-height: 0.42rem;
    font-family: "fontFamily-M";
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .desc_list {
    margin-top: 0.72rem;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .desc_list li {
    position: relative;
    font-size: 0.26rem;
    line-height: 0.39rem;
    padding-left: 0.12rem;
  }
  .technology_research_page .research_process .research_process_con .swiper-wrapper .swiper-slide .desc_list li::before {
    position: absolute;
    left: 0;
    top: 0.2rem;
    content: "";
    display: block;
    width: 0.05rem;
    height: 0.05rem;
    border-radius: 50%;
    background-color: var(--fcolor-white);
  }
  .technology_research_page .research_process .research_process_con .swiper-pagination {
    margin-top: 0.8rem;
    position: relative;
    width: 100%;
    height: 0.02rem;
    background: #d3d3d3;
  }
  .technology_research_page .research_process .research_process_con .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 0.04rem;
    background: var(--sk-global-color);
    top: -0.01rem;
  }
  .technology_research_page .research_equipment {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .technology_research_page .research_equipment .research_equipment_con {
    margin-top: 0.52rem;
    overflow: visible;
  }
  .technology_research_page .research_equipment .research_equipment_con .swiper-wrapper .swiper-slide {
    padding: 0.5rem 0;
    border-radius: 0.2rem;
  }
  .technology_research_page .research_equipment .research_equipment_con .swiper-wrapper .swiper-slide .equipment_type {
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
    padding: 0.1rem 0.16rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
    letter-spacing: 0.04rem;
    border-radius: 0.06rem;
  }
  .technology_research_page .research_equipment .research_equipment_con .swiper-wrapper .swiper-slide .equipment_img {
    height: 2.88rem;
    margin-top: 0.78rem;
  }
  .technology_research_page .research_equipment .research_equipment_con .swiper-wrapper .swiper-slide .equipment_name {
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 0.03rem;
  }
  .technology_research_page .research_equipment .research_equipment_con .bottom_con {
    margin-top: 0.8rem;
    -webkit-box-pack: initial;
    -webkit-justify-content: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
  }
  .technology_research_page .research_equipment .research_equipment_con .bottom_con .swiper-pagination {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: unset;
    margin-right: 0.36rem;
    height: 0.02rem;
  }
  .technology_research_page .research_equipment .research_equipment_con .bottom_con .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 0.04rem;
    background: var(--sk-global-color);
    top: -0.01rem;
  }
  .technology_research_page .coating_technology {
    --bg-color: #ffffff1a;
    --text-color: #ffffffb3;
    padding: 2rem 0;
    background: url(../image/simon/techno_bg_m.jpg) center center/100% 100% no-repeat;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating {
    margin-top: 0.6rem;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating .title {
    font-size: 0.4rem;
    line-height: 0.6rem;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._top {
    margin-top: 0.45rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_left {
    width: 100%;
    border-radius: 0.16rem;
    margin-right: 0;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_left ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    letter-spacing: 0.02rem;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_left ul li {
    width: 100%;
    padding: 0.25rem 0.4rem 0.26rem;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_left ul li .key {
    width: 37.79%;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_right {
    margin-top: 0.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.3rem;
    border-radius: 0.2rem;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_right img:nth-child(1) {
    width: 100%;
    height: auto;
    border-radius: 0.16rem 0.16rem 0 0;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._top ._top_right img:nth-child(2) {
    width: 100%;
    height: auto;
    border-radius: 0 0 0.16rem 0.16rem;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._bototm {
    margin-top: 0.6rem;
    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.57rem 0.3rem 0.71rem;
    border-radius: 0.2rem;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._bototm ._bototm_left {
    width: 100%;
    height: initial;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._bototm ._bototm_right {
    margin: 0;
    padding: 0;
    margin-top: 0.59rem;
    padding-top: 0.61rem;
    border-top: 0.01rem solid #ffffff26;
    border-left: none;
  }
  .technology_research_page .coating_technology .titanium_alloy_coating ._bototm ._bototm_right p {
    margin-top: 0;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .technology_research_page .coating_technology .performance_comparison {
    margin-top: 1.6rem;
  }
  .technology_research_page .coating_technology .performance_comparison .title {
    font-size: 0.4rem;
    line-height: 0.6rem;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list {
    margin-top: 0.44rem;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item {
    padding: 0.07rem 0.07rem 0.42rem;
    border-radius: 0.2rem;
    background-color: var(--bg-color);
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .__img_con {
    width: 100%;
    height: 3.1rem;
    border-radius: 0.16rem;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .name {
    margin-top: 0.32rem;
    padding: 0 0.29rem;
    font-size: 0.4rem;
    line-height: 0.47rem;
    color: var(--fcolor-white);
    font-family: "fontFamily-TR";
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .info {
    margin-top: 0.41rem;
    padding: 0 0.29rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    color: var(--text-color);
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .info .info_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;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item .info .info_item .line {
    margin: 0 0.16rem;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .coating_list_item.swiper-slide-active .name {
    color: var(--sk-global-color);
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .swiper-pagination {
    margin-top: 0.8rem;
    position: relative;
    width: 100%;
    height: 0.02rem;
    background: #ffffff4d;
  }
  .technology_research_page .coating_technology .performance_comparison .coating_list .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 0.04rem;
    background: var(--sk-global-color);
    top: -0.01rem;
  }
  .technology_research_page .coating_technology .machining_parameter {
    margin-top: 1.42rem;
  }
  .technology_research_page .coating_technology .machining_parameter .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .technology_research_page .coating_technology .machining_parameter ._mid {
    margin-top: 0.32rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    color: var(--text-color);
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .technology_research_page .coating_technology .machining_parameter ._mid ._mid_left {
    width: 100%;
    padding-bottom: 0.68rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.91rem 1fr;
    grid-template-columns: 1.91rem 1fr;
    -webkit-column-gap: 0.2rem;
    -moz-column-gap: 0.2rem;
    column-gap: 0.2rem;
    border-right: none;
    border-bottom: 0.01rem solid #ffffff4d;
  }
  .technology_research_page .coating_technology .machining_parameter ._mid ._mid_right {
    padding: 0.68rem 0 0.4rem;
    margin-top: 0;
  }
  .technology_research_page .school_enterprise_cooperation {
    padding: 2rem 0;
  }
  .technology_research_page .school_enterprise_cooperation .wal {
    position: relative;
  }
  .technology_research_page .school_enterprise_cooperation .wal .--fz-h2 {
    text-align: center;
  }
  .technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con {
    margin-top: 0.48rem;
    overflow: visible;
  }
  .technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a {
    padding: 0.44rem 0.4rem 0.71rem;
    border-radius: 0.2rem;
  }
  .technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a ._top .school_name {
    margin-top: 0.3rem;
    font-size: 0.4rem;
    line-height: 0.6rem;
  }
  .technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a ._top .school_icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  .technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a .project_name {
    margin-top: 0.36rem;
    font-size: 0.36rem;
    line-height: 0.54rem;
  }
  .technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper-wrapper .swiper-slide a .project_desc {
    margin-top: 0.29rem;
    margin-bottom: 0;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .technology_research_page .school_enterprise_cooperation .wal .cooperation_school_con .swiper_pagination_si {
    margin-top: 0.6rem;
  }
  .technology_research_page .school_enterprise_cooperation .wal .swiper_btn_box_si {
    position: absolute;
    right: 0;
    top: 0.11rem;
  }

  .service_support_page .download_list_section {
    padding: 2.55rem 0 2rem;
  }
  .service_support_page .download_list_section .--fz-h1 {
    font-size: var(--fz-h2);
    line-height: var(--lh-h2);
    letter-spacing: 0.04rem;
  }
  .service_support_page .download_list_section .download_list {
    margin-top: 0.6rem;
    -webkit-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    row-gap: 0.6rem;
  }
  .service_support_page .download_list_section .download_list .download_list_item {
    width: calc((100% - 0.25rem) / 2);
  }
  .service_support_page .download_list_section .download_list .download_list_item a {
    display: block;
  }
  .service_support_page .download_list_section .download_list .download_list_item a .__pp_con {
    border-radius: 0.2rem;
  }
  .service_support_page .download_list_section .download_list .download_list_item a .__pp_con .download_icon {
    width: 0.64rem;
    height: 0.64rem;
  }
  .service_support_page .download_list_section .download_list .download_list_item a .__pp_con .download_icon .svg-fill {
    width: 0.24rem;
    height: 0.24rem;
  }
  .service_support_page .download_list_section .download_list .download_list_item a > .name {
    margin-top: 0.23rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    font-family: "fontFamily-M";
    letter-spacing: 0.02rem;
    text-align: center;
  }
  .service_support_page .download_list_section .download_list .download_list_item.more_profile a .__pp_con .__container .msg {
    padding: 0 0.1rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .service_support_page .faq_section {
    padding: 2rem 0 1.6rem;
  }
  .service_support_page .faq_section .wal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service_support_page .faq_section .wal ._left {
    position: static;
    width: 100%;
  }
  .service_support_page .faq_section .wal ._left .--fz-h2 {
    font-family: "fontFamily-B";
    letter-spacing: 0.05rem;
    text-align: center;
  }
  .service_support_page .faq_section .wal ._left .__tab_list {
    margin-top: 0.41rem;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -webkit-flex-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    gap: 0.68rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .service_support_page .faq_section .wal ._left .__tab_list .__tab_list_item {
    padding: 0.19rem 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 0.03rem;
  }
  .service_support_page .faq_section .wal ._left .__tab_list .__tab_list_item.active {
    border-bottom: 0.03rem solid var(--sk-global-color);
  }
  .service_support_page .faq_section .wal ._right {
    margin-top: 0.61rem;
  }
  .service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item {
    border-radius: 0.2rem;
  }
  .service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item:not(:last-child) {
    margin-bottom: 0.2rem;
  }
  .service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item .__expand_item_top {
    padding: 0.24rem 0.3rem 0.24rem;
  }
  .service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item .__expand_item_top .title {
    font-size: 0.28rem;
    line-height: 0.42rem;
    letter-spacing: 0.02rem;
  }
  .service_support_page .faq_section .wal ._right .__expand_list .__expand_list_item .__expand_item_bottom .container {
    padding: 0.16rem 0.3rem 0.59rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .service_support_page .consulting_section {
    padding-bottom: 2rem;
  }
  .service_support_page .consulting_section .consulting_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.38rem;
  }
  .service_support_page .consulting_section .consulting_list .consulting_list_item {
    width: 100%;
    border-radius: 0.2rem;
  }
  .service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con {
    padding-top: 100%;
  }
  .service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  .service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container .mask {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    width: 100%;
    padding: 0.36rem 0.58rem 0.58rem;
    height: calc(326 / 672 * 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 0.16rem;
  }
  .service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container .mask .name {
    font-size: 0.36rem;
    line-height: 0.54rem;
    letter-spacing: 0.03rem;
  }
  .service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container .mask .desc {
    margin-top: 0.2rem;
    font-size: 0.28rem;
    line-height: 0.28rem;
  }
  .service_support_page .consulting_section .consulting_list .consulting_list_item .__pp_con .__container .mask .hry__btn {
    margin-top: auto;
    width: inherit;
  }

  .join_us_page .professional_career {
    padding-top: 2.55rem;
  }
  .join_us_page .professional_career .--fz-h1 {
    font-size: var(--fz-h2);
    line-height: var(--lh-h2);
    letter-spacing: 0.04rem;
  }
  .join_us_page .professional_career .career_list {
    margin-top: 0.6rem;
  }
  .join_us_page .professional_career .career_list .career_list_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .join_us_page .professional_career .career_list .career_list_item:not(:last-child) {
    margin-bottom: 0.8rem;
  }
  .join_us_page .professional_career .career_list .career_list_item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .join_us_page .professional_career .career_list .career_list_item ._left {
    width: 100%;
    border-radius: 0.2rem;
  }
  .join_us_page .professional_career .career_list .career_list_item ._left .__pp_con {
    padding-top: calc(438 / 670 * 100%);
  }
  .join_us_page .professional_career .career_list .career_list_item ._right .name {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.6rem;
    letter-spacing: 0.04rem;
  }
  .join_us_page .professional_career .career_list .career_list_item ._right .desc {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .join_us_page .recruitment_position {
    padding: 0.5rem 0;
  }
  .join_us_page .recruitment_position .wal {
    padding: 1.5rem 0.4rem;
  }
  .join_us_page .recruitment_position .position_list {
    margin-top: 0.6rem;
  }
  .join_us_page .recruitment_position .position_list .position_list_item {
    border-bottom: 0.02rem solid #d3d3d3;
  }
  .join_us_page .recruitment_position .position_list .position_list_item:first-child {
    border-top: 0.02rem solid #d3d3d3;
  }
  .join_us_page .recruitment_position .position_list .position_list_item .__expand_item_top {
    padding: 0.45rem 0 0.44rem;
  }
  .join_us_page .recruitment_position .position_list .position_list_item .__expand_item_top ._left .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .join_us_page .recruitment_position .position_list .position_list_item .__expand_item_top ._left .tag_list {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .join_us_page .recruitment_position .position_list .position_list_item .__expand_item_top ._left .tag_list .line {
    margin: 0 0.16rem;
  }
  .join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container {
    padding: 0.16rem 0 0.83rem;
  }
  .join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container .key_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0.8rem;
  }
  .join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container .key_content .key {
    width: 100%;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container .key_content .content {
    padding-right: 0;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .join_us_page .recruitment_position .position_list .position_list_item .__expand_item_bottom .container .hry__btn {
    margin-left: 0;
  }

  .contact_us_page .contact_info_section {
    margin: 2.55rem 0 2rem;
  }
  .contact_us_page .contact_info_section .--fz-h1 {
    font-size: var(--fz-h2);
    line-height: var(--lh-h2);
    letter-spacing: 0.04rem;
  }
  .contact_us_page .contact_info_section .company_info {
    margin-top: 0.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact_us_page .contact_info_section .company_info ._left {
    width: 100%;
    margin-right: 0;
    border-radius: 0.2rem;
  }
  .contact_us_page .contact_info_section .company_info ._left .__pp_con .pin {
    position: absolute;
    width: 0.584rem;
    height: 0.8rem;
    left: calc(325 / 670 * 100%);
    top: calc(228 / 670 * 100%);
  }
  .contact_us_page .contact_info_section .company_info ._right ._right_top .company_name {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.6rem;
    letter-spacing: 0.04rem;
    padding-right: 0.4rem;
  }
  .contact_us_page .contact_info_section .company_info ._right ._right_top .company_address {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .contact_us_page .contact_info_section .company_info ._right ._right_top .hry__btn {
    margin-top: 0.6rem;
  }
  .contact_us_page .contact_info_section .company_info ._right ._right_bottom {
    margin-top: 0.94rem;
    margin-bottom: 0;
  }
  .contact_us_page .contact_info_section .company_info ._right ._right_bottom .contact_info_list > li:not(:last-child) {
    margin-bottom: 0.48rem;
  }
  .contact_us_page .contact_info_section .company_info ._right ._right_bottom .contact_info_list > li .key {
    margin-top: 0.04rem;
    margin-right: 0.3rem;
    width: 0.4rem;
    height: 0.4rem;
  }
  .contact_us_page .contact_info_section .company_info ._right ._right_bottom .contact_info_list > li .val_list {
    font-size: 0.36rem;
    line-height: 0.44rem;
    letter-spacing: 0.03rem;
  }
  .contact_us_page .contact_info_section .company_info ._right ._right_bottom .contact_info_list > li.fax .key {
    margin-top: 0;
  }
  .contact_us_page .contact_info_section .contacts_list {
    margin-top: 1.58rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact_us_page .contact_info_section .contacts_list li {
    width: calc((100% - 0.2rem) / 2);
    padding: 0.22rem 0.3rem 0.3rem;
    border-radius: 0.16rem;
  }
  .contact_us_page .contact_info_section .contacts_list li .address {
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 0.03rem;
  }
  .contact_us_page .contact_info_section .contacts_list li .name {
    margin-top: 0.56rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .contact_us_page .contact_info_section .contacts_list li .phone {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.26rem;
  }
  .contact_us_page .online_message_section .__pp_con {
    padding-top: calc(1624 / 750 * 100%);
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal {
    -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;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._left {
    margin-top: 1.6rem;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._left .title {
    font-size: 0.56rem;
    line-height: 0.84rem;
    letter-spacing: 0.05rem;
    text-align: center;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._left .desc {
    margin-top: 0.32rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    max-width: initial;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right {
    margin-top: 0.96rem;
    width: 6.7rem;
    padding: 0.63rem 0.3rem 0.85rem;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-radius: 0.2rem;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right .title {
    font-size: 0.36rem;
    line-height: 0.54rem;
    letter-spacing: 0.03rem;
    text-align: center;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con {
    padding-top: 0.06rem;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item {
    margin-top: 0.48rem;
    border-radius: 0.08rem;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item .label {
    left: 0.33rem;
    top: -0.16rem;
    padding: 0 0.24rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item .label::before {
    left: 0;
    top: 0rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item input,
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea {
    width: 100%;
    margin: 0.22rem 0;
    padding: 0 0.2rem;
    font-size: 0.26rem;
    line-height: 0.4rem;
    color: #fff;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right .form_con .form_item textarea {
    margin: 0.35rem 0;
    resize: none;
  }
  .contact_us_page .online_message_section .__pp_con .__container .wal ._right .hry__btn {
    margin-top: 0.4rem;
  }

  .search_result_page {
    padding: 2.55rem 0 2rem;
  }
  .search_result_page .--fz-h1 {
    font-size: var(--fz-h2);
    line-height: var(--lh-h2);
    letter-spacing: 0.04rem;
  }
  .search_result_page .search_input_section {
    margin-top: 0.6rem;
  }
  .search_result_page .search_input_section .wal {
    max-width: unset;
    gap: 0;
  }
  .search_result_page .search_input_section .wal input {
    padding: 0.26rem 0.3rem;
    border-radius: 0.08rem 0 0 0.08rem;
    font-size: 0.24rem;
    line-height: 0.27rem;
  }
  .search_result_page .search_input_section .wal .search_btn {
    width: 1.2rem;
    background-color: #f5f5f5;
    padding: 0.26rem 0.3rem;
    font-size: 0.28rem;
    line-height: 0.28rem;
    letter-spacing: 0.02rem;
    color: var(--fcolor-defult);
    font-family: "fontFamily-R";
    border-radius: 0 0.08rem 0.08rem 0;
  }
  .search_result_page .result_list_section {
    position: relative;
    margin-top: 0;
    padding-top: 1.89rem;
  }
  .search_result_page .result_list_section .wal {
    max-width: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .search_result_page .result_list_section .wal ._left {
    width: 100%;
  }
  .search_result_page .result_list_section .wal ._left .__tab_list {
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 0.6rem;
    -moz-column-gap: 0.6rem;
    column-gap: 0.6rem;
    row-gap: 0.25rem;
  }
  .search_result_page .result_list_section .wal ._left .__tab_list .__tab_list_item {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .search_result_page .result_list_section .wal ._left .__tab_list .__tab_list_item:not(:last-child) {
    margin-bottom: 0;
  }
  .search_result_page .result_list_section .wal ._right .count_info {
    position: absolute;
    top: 0.6rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .search_result_page .result_list_section .wal ._right .result_list {
    margin-top: 0.48rem;
  }
  .search_result_page .result_list_section .wal ._right .result_list li a {
    padding: 0.54rem 0 0.5rem;
    border-top: 0.02rem solid #dddddd;
  }
  .search_result_page .result_list_section .wal ._right .result_list li a p {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .search_result_page .result_list_section .wal ._right .result_list li:last-of-type a {
    border-bottom: 0.02rem solid #dddddd;
  }

  .solution_page_1 .__g_banner .__pp_con {
    overflow: visible;
  }
  .solution_page_1 .__g_banner ._enter_con {
    width: 100%;
    position: absolute;
    bottom: auto;
    top: 100%;
    overflow-x: auto;
  }
  .solution_page_1 .__g_banner ._enter_con .wal {
    padding: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .solution_page_1 .__g_banner ._enter_con .__tab_list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: #f5f5f5;
    border-radius: none;
    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;
  }
  .solution_page_1 .__g_banner ._enter_con .__tab_list .__tab_list_item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .solution_page_1 .__g_banner ._enter_con .__tab_list .__tab_list_item a {
    display: block;
    padding: 0.3rem 0.52rem 0.3rem 0.46rem;
    font-size: 0.26rem;
    line-height: 0.4rem;
    font-family: "fontFamily-R";
    letter-spacing: 0.02rem;
    color: #999999;
  }
  .solution_page_1 .__g_banner ._enter_con .__tab_list .__tab_list_item.active a {
    color: #333333;
  }
  .solution_page_1 .__g_banner ._enter_con .__tab_list .line {
    width: 0.01rem;
    height: 0.5rem;
    background-color: #d3d3d3;
  }
  .solution_page_1 .application_scenario {
    padding: 2rem 0;
  }
  .solution_page_1 .application_scenario .scenario_list {
    margin-top: 0.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
  .solution_page_1 .application_scenario .scenario_list .scenario_list_item {
    width: 100%;
    border-radius: 0.2rem;
  }
  .solution_page_1 .application_scenario .scenario_list .scenario_list_item .__pp_con {
    padding-top: calc(377 / 670 * 100%);
  }
  .solution_page_1 .application_scenario .scenario_list .scenario_list_item .name {
    margin-top: 0.44rem;
    padding: 0 0.4rem;
    font-size: 0.48rem;
    line-height: 0.72rem;
    letter-spacing: 0.04rem;
  }
  .solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list {
    margin-top: 0.32rem;
    padding: 0 0.41rem 0.52rem;
  }
  .solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list .link_list_item {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list .link_list_item:not(:first-child) {
    margin-top: 0.17rem;
  }
  .solution_page_1 .application_scenario .scenario_list .scenario_list_item .link_list .link_list_item .svg-fill {
    margin-left: 0.2rem;
    width: 0.28rem;
    height: 0.28rem;
  }

  .privacy_policy_page .detail_section {
    margin: 2.55rem 0 2rem;
  }
  .privacy_policy_page .detail_section .wal {
    max-width: unset;
  }
  .privacy_policy_page .detail_section .wal .--fz-h1 {
    font-size: var(--fz-h2);
    line-height: var(--lh-h2);
    text-align: center;
  }
  .privacy_policy_page .detail_section .wal .detail {
    margin-top: 0.6rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }

  .not_found_page .not_found {
    width: 100%;
    height: 100vh;
  }
  .not_found_page .not_found .wal .hint_msg {
    margin-top: 0.58rem;
    font-size: 0.36rem;
    line-height: 0.54rem;
    letter-spacing: 0.03rem;
  }
  .not_found_page .not_found .wal .btn_box {
    margin-top: 0.98rem;
    width: 100%;
  }
  .not_found_page .not_found .wal .btn_box .hry__btn {
    min-width: calc((100% - 0.2rem) / 2);
  }

  .news_center_page .swiper_news_section {
    margin-top: 2.65rem;
  }
  .news_center_page .swiper_news_section .swiper_news_con {
    margin-top: 0.7rem;
  }
  .news_center_page .swiper_news_section .swiper_news_con .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: initial;
  }
  .news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._left {
    width: 100%;
    border-radius: 0.2rem;
  }
  .news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._left .__pp_con {
    padding-top: calc(377 / 670 * 100%);
  }
  .news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._right .title {
    margin-top: 0.47rem;
    padding-right: 0.7rem;
    font-size: 0.36rem;
    line-height: 0.54rem;
  }
  .news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._right .publish_time {
    margin-top: 0.25rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
    letter-spacing: 0.02rem;
  }
  .news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._right .desc {
    margin-top: 0.32rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .news_center_page .swiper_news_section .swiper_news_con .swiper-slide ._right .hry__btn {
    margin-top: 0.6rem;
    min-width: unset;
    width: 100%;
  }
  .news_center_page .swiper_news_section .swiper_news_con .swiper_pagination_si {
    margin-top: 0.8rem;
  }
  .news_center_page .news_list_section {
    margin-top: 1.4rem;
    padding-bottom: 2rem;
  }
  .news_center_page .news_list_section .news_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
  .news_center_page .news_list_section .news_list .news_list_item {
    width: 100%;
    border-radius: 0.2rem;
  }
  .news_center_page .news_list_section .news_list .news_list_item a .__pp_con {
    padding-top: calc(376 / 670 * 100%);
  }
  .news_center_page .news_list_section .news_list .news_list_item a .info {
    padding: 0.48rem 0.35rem 0.54rem 0.41rem;
  }
  .news_center_page .news_list_section .news_list .news_list_item a .info .news_title {
    font-size: 0.36rem;
    line-height: 0.54rem;
    letter-spacing: 0.03rem;
    min-height: unset;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .news_center_page .news_list_section .news_list .news_list_item a .info .publist_time {
    margin-top: 0.25rem;
    font-size: 0.26rem;
    line-height: 0.39rem;
  }
  .news_center_page .news_list_section .-pagination {
    margin-top: 0.6rem;
  }
}
