@charset "UTF-8";
/*******/
/******/
/* 公共按钮样式 */
@keyframes btnAnt {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: none;
  }
}
@-webkit-keyframes btnAnt {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: none;
  }
}
.btnbox {
  width: 100%;
  display: flex;
}

.xipm-btn {
  width: 8rem;
  height: 2.4rem;
  display: block;
  position: relative;
  font-size: max(14px, 0.8rem);
  line-height: 1em;
  cursor: pointer;
  border: solid 1px;
  font-weight: bold;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.xipm-btn .bi {
  width: 1rem;
  height: 1rem;
  display: block;
  flex: none;
  position: relative;
  background-color: currentColor;
}
.xipm-btn .bi-learn {
  -webkit-mask: url("/img-common-more/black.svg.jpg") no-repeat center/contain;
  mask: url("/img-common-more/black.svg.jpg") no-repeat center/contain;
}
.xipm-btn > * {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  position: relative;
  transition: none;
  -webkit-transition: none;
}

.xipm-btn-fill-red {
  border-color: var(--mt-global-color-red);
  background-color: var(--mt-global-color-red);
  color: #fff;
}

.xipm-btn-fill-black {
  border-color: var(--mt-global-color-black);
  background-color: var(--mt-global-color-black);
  color: #fff;
}

.xipm-btn-black {
  border-color: var(--mt-global-color-black);
  background-color: transparent;
  color: var(--mt-global-color-black);
}

.xipm-more {
  display: flex;
  position: relative;
  font-size: .8rem;
  line-height: 1.5em;
  color: var(--mt-global-color-black);
  font-weight: bold;
}
.xipm-more > * {
  display: flex;
  align-items: center;
  position: relative;
}
.xipm-more .bi {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  background-color: currentColor;
  -webkit-mask: url("/img-common-more/black.svg.jpg") no-repeat center/contain;
  mask: url("/img-common-more/black.svg.jpg") no-repeat center/contain;
}

.xipm-download {
  display: flex;
  position: relative;
  font-size: .8rem;
  line-height: 2em;
  color: var(--mt-global-color-red);
  font-weight: bold;
}
.xipm-download > * {
  display: flex;
  align-items: center;
  position: relative;
}
.xipm-download .bi {
  width: 1rem;
  height: 1rem;
  display: block;
  background-color: currentColor;
  -webkit-mask: url("/img-common-download/black.svg.jpg") no-repeat center/contain;
  mask: url("/img-common-download/black.svg.jpg") no-repeat center/contain;
  margin: 0 5px 0 0;
}

@media (min-width: 992px) {
  .xipm-btn:hover {
    border-color: var(--mt-global-color-red-hover);
    background-color: var(--mt-global-color-red-hover);
    color: #fff;
  }

  .xipm-more:hover {
    color: var(--mt-global-color-red);
  }
}
@media (max-width: 991.98px) {
  .xipm-btn {
    width: 2.7rem;
    height: 0.8rem;
    font-size: 0.28rem;
    line-height: 0.3rem;
  }
  .xipm-btn .bi {
    width: 0.32rem;
    height: 0.32rem;
  }
  .xipm-btn .bi-learn {
    margin: 0 0 0 3px;
  }

  .xipm-more {
    font-size: 0.28rem;
    line-height: 0.3rem;
  }
  .xipm-more .bi {
    width: 0.32rem;
    height: 0.32rem;
    margin: 0 0 0 3px;
  }

  .xipm-download {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .xipm-download .bi {
    width: 0.25rem;
    height: 0.25rem;
    margin: 0 0.12rem 0 0;
  }
}
/* 自定义下拉框 */
.byted-select-wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
}

.byted-select-wrapper.is-open {
  z-index: 50;
}

.byted-select-wrapper.is-open .byted-select-arrow .bi {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.byted-select {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.byted-select-input {
  cursor: pointer;
  display: flex;
  font-size: .8rem;
  line-height: 1em;
  color: #0052b7;
  width: 100%;
  height: calc(2.4rem + 2px);
  align-items: center;
  border-radius: 2.5rem;
  padding: 0 3rem 0 1.5rem;
  font-weight: bold;
  border: solid 1px #0052b7;
}

.byted-select-arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 20;
  color: #5189ce;
}

.byted-select-arrow .bi {
  width: 12px;
  height: 12px;
  display: block;
}

.byted-popover-wrapper {
  min-width: 100%;
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 0.6rem);
  background: #fff;
  border: solid 1px #0052b7;
  border-radius: 10px;
  z-index: 20;
  padding: 0.5rem;
}

.byted-option-list {
  font-size: .8rem;
  line-height: 1.5em;
  color: #363636;
  white-space: nowrap;
  overflow: hidden;
  overflow-y: auto;
  max-height: calc(12em + 3rem);
}

.byted-option-list::-webkit-scrollbar {
  width: 2px;
}

.byted-option-list::-webkit-scrollbar-track {
  background: none;
}

.byted-option-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
}

.byted-option-list li {
  padding: 0.3rem 0;
  cursor: pointer;
}

.byted-option-list li.current, .byted-option-list li.active {
  font-weight: bold;
  color: #0052b7;
}

.byted-option-list a {
  display: block;
  padding: 0 1rem;
}

@media screen and (min-width: 992px) {
  .byted-select:hover .form-control {
    border-color: #fe2c55;
  }

  .byted-option-list li:hover, .byted-checkbox-list li:hover {
    color: #0052b7;
  }
}
@media screen and (max-width: 991.98px) {
  .byted-select-arrow {
    right: .28rem;
  }

  .byted-select-arrow .bi {
    width: .3rem;
    height: .3rem;
  }

  .byted-select-clear {
    right: .28rem;
  }

  .byted-select-clear .bi {
    width: .3rem;
    height: .3rem;
  }

  .byted-popover-wrapper {
    border-radius: .32rem;
    top: calc(100% + 0.24rem);
    padding: 0.1rem;
  }

  .byted-option-list {
    font-size: .28rem;
    line-height: 0.48rem;
  }

  .byted-option-list li {
    padding: 0.1rem 0;
  }

  .byted-option-list a {
    padding: 0 0.3rem;
  }

  .byted-checkbox-list {
    font-size: .24rem;
    line-height: 0.3rem;
  }

  .byted-checkbox-label {
    padding: 0.28rem 0.28rem 0.28rem 0.3rem;
  }

  .byted-check-ico {
    width: 0.3rem;
    height: 0.3rem;
    margin: 0 0 0 0.16rem;
  }

  .byted-checkbox-select-wrapper .byted-popover-wrapper {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}
/****
 * 其他 
*****/
/* 提示框 */
.tooltip {
  font-size: .7em;
}

#modalCopyLink {
  display: block;
  white-space: nowrap;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 3px;
  font-size: .8em;
  padding: .5em 1.25em;
}

/** 页面置灰 **/
.page-gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
}

.page-gray * {
  filter: Gray;
  -webkit-filter: Gray;
  -o-filter: Gray;
  -ms-filter: Gray;
  -moz-filter: Gray;
}

/** 公共分页 **/
.global-paging {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3em;
  gap: 0 5.25em;
}
.global-paging .paging-ctrl {
  width: 3.45rem;
  height: 2.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: all 0s;
  background: url(/img-images-arrow/left.svg.jpg) no-repeat;
}
.global-paging .paging-ctrl.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.global-paging .paging-ctrl.prev {
  background-size: contain;
}
.global-paging .paging-ctrl.next {
  background-size: contain;
  transform: rotate(-180deg);
}
.global-paging .paging-num {
  display: flex;
  gap: 0 1.65em;
}
.global-paging .paging-num a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0s;
  font-size: 0.9rem;
  line-height: 1rem;
  color: #666;
}
.global-paging .paging-num a.active {
  color: #25572A;
  font-weight: 700;
}

@media (min-width: 992px) {
  .global-paging .paging-num a:hover {
    color: #25572A;
  }

  .global-paging .paging-ctrl:hover {
    background: url(/img-images-arrow/left/active.svg.jpg);
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .global-paging {
    padding-top: 0.5rem;
    gap: 0;
    justify-content: space-between;
  }
  .global-paging .paging-ctrl {
    width: 2.4rem;
    height: 0.76rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    gap: 0;
    margin: 0;
    position: relative;
    gap: 0 0.1rem;
  }
  .global-paging .paging-ctrl .arrow {
    mask: url(/img-images-arrow/mob.svg.jpg) no-repeat center/contain;
    -webkit-mask: url(/img-images-arrow/mob.svg.jpg) no-repeat center/contain;
    background-color: #222;
    position: relative;
    z-index: 1;
    width: 0.26rem;
    height: 0.26rem;
  }
  .global-paging .paging-ctrl::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: url(/img-images-arrow/left/mob.svg.jpg) no-repeat;
    background-size: contain;
  }
  .global-paging .paging-ctrl.prev {
    position: relative;
  }
  .global-paging .paging-ctrl.prev .arrow {
    margin-left: -0.3rem;
  }
  .global-paging .paging-ctrl.next {
    transform: rotate(0);
  }
  .global-paging .paging-ctrl.next::before {
    transform: rotate(-180deg);
  }
  .global-paging .paging-ctrl.next .arrow {
    transform: rotate(-180deg);
  }
  .global-paging .paging-ctrl span {
    font-size: 0.3rem;
    line-height: 0.42rem;
    color: #222;
    font-weight: bold;
    position: relative;
    z-index: 1;
  }
  .global-paging .paging-ctrl.addcolor::before {
    background: url(/img-images-arrow/right/mob/active.svg.jpg);
    background-size: contain;
  }
  .global-paging .paging-ctrl.addcolor span {
    color: #fff;
  }
  .global-paging .paging-ctrl.addcolor .arrow {
    background-color: #fff;
  }
  .global-paging .paging-num {
    display: flex;
    gap: 0;
  }
  .global-paging .paging-num > * {
    font-size: 0.3rem;
    line-height: 0.3rem;
    font-weight: 700;
    color: #222;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  .global-paging .paging-num > *:not(:last-child)::after {
    content: '/';
    margin: 0 2px;
  }
}
.public-button > * {
  display: flex;
  background: #E00E1E;
  padding: 0 0.8em;
  min-width: 6.5em;
  height: 2.3em;
  align-items: center;
  justify-content: center;
  gap: 0 0.15rem;
  transition: all 0.3s;
}
.public-button i {
  mask: url(/img-common-more.svg.jpg) no-repeat center/contain;
  -webkit-mask: url(/img-common-more.svg.jpg) no-repeat center/contain;
  background-color: #fff;
  width: 1.05em;
  height: 1.05em;
}
.public-button span {
  font-size: 0.9em;
  line-height: 1.3333333333em;
  color: #fff;
  font-weight: 400;
}

@media (min-width: 992px) {
  .public-button > *:hover {
    background: #AA000D;
  }
}
.public-breadcrumb {
  position: absolute;
  top: 1em;
  left: 0;
  width: 100%;
}
.public-breadcrumb ul {
  display: flex;
  gap: 0 0.9em;
}
.public-breadcrumb li {
  position: relative;
}
.public-breadcrumb li::after {
  position: absolute;
  content: '';
  background: url(/img-images-arrow/right/menu.svg.jpg) no-repeat;
  background-size: contain;
  width: 0.25rem;
  height: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 0.3rem);
  opacity: 0.6;
}
.public-breadcrumb li:last-child::after {
  opacity: 0;
}
.public-breadcrumb a {
  display: flex;
}
.public-breadcrumb span {
  font-size: 0.7em;
  line-height: 1.4285714286em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

@media (min-width: 992px) {
  .public-breadcrumb li:hover span {
    color: #fff;
    font-weight: bold;
  }
}
@media (max-width: 991.98px) {
  .public-breadcrumb {
    top: 0.4rem;
  }
  .public-breadcrumb ul {
    gap: 0 0.35rem;
  }
  .public-breadcrumb li::after {
    width: 0.09rem;
    height: 0.13rem;
    left: calc(100% + 0.1rem);
  }
  .public-breadcrumb span {
    font-size: 0.26rem;
    line-height: 0.26rem;
  }
}
.public-banner-h451 .public-banner {
  overflow: hidden;
}
.public-banner-h451 .public-banner img {
  height: 23.4895833333vw;
}
.public-banner-h451 .public-banner .inner-slide {
  position: relative;
}
.public-banner-h451 .public-banner .img-up-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding-top: 7.8125vw;
}
.public-banner-h451 .public-banner .global-inner {
  display: flex;
  flex-direction: column;
}
.public-banner-h451 .public-banner .title {
  font-size: 2em;
  line-height: 1.4em;
  color: #fff;
  font-weight: 700;
}
.public-banner-h451 .public-banner .desc {
  font-size: 1em;
  line-height: 1.5em;
  color: #fff;
  font-weight: 400;
  margin-top: 1em;
  width: 67.8%;
  max-width: 49.4em;
}

@media (max-width: 991.98px) {
  .public-banner-h451 .public-banner .img-up-text {
    padding-bottom: 0;
    padding-top: 1.76rem;
  }
  .public-banner-h451 .public-banner .title {
    font-size: 0.54rem;
    line-height: 0.68rem;
  }
  .public-banner-h451 .public-banner .desc {
    font-size: 0.34rem;
    line-height: 0.48rem;
    margin-top: 0.2rem;
    width: 100%;
    max-width: none;
  }
  .public-banner-h451 .public-banner img {
    height: 5.5rem;
  }
}
.has-anchor-navigation {
  padding-top: 1.8em;
}

.public-anchor-navigation {
  position: sticky;
  top: 5em;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 98;
}

.anchor-navigation {
  position: relative;
}
.anchor-navigation::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1em;
  background: #E9E9EA;
}
.anchor-navigation a {
  display: flex;
  padding: 1.2em 0.5em 1.2em 0.5em;
  min-width: 6.8em;
  position: relative;
  justify-content: center;
}
.anchor-navigation a::after {
  position: absolute;
  content: '';
  height: 0.2em;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #E00E1E;
  transition: all 0s;
}
.anchor-navigation span {
  font-size: 0.9em;
  line-height: 1.3333333333em;
  color: #000;
  font-weight: 400;
}
.anchor-navigation .active a::after {
  width: 100%;
}
.anchor-navigation .active span {
  color: #E00E1E;
  font-weight: 700;
}

@media (min-width: 992px) {
  .anchor-navigation .swiper-wrapper {
    gap: 0 0.5em;
  }
  .anchor-navigation .swiper-slide {
    width: auto;
  }
}
@media (max-width: 991.98px) {
  .has-anchor-navigation {
    padding: 0.58rem 0 0 0;
  }

  .public-anchor-navigation {
    top: 1.42rem;
  }
  .public-anchor-navigation .swiper-slide {
    width: 1.32rem;
    margin-right: 20px;
  }
  .public-anchor-navigation .anchor-navigation::after {
    height: 0.02rem;
  }
  .public-anchor-navigation .anchor-navigation span {
    font-size: 0.3rem;
    line-height: 0.46rem;
  }
  .public-anchor-navigation .anchor-navigation a {
    min-width: 100%;
    padding: 0.22rem 0 0.22rem;
    display: flex;
  }
  .public-anchor-navigation .anchor-navigation a::after {
    height: 0.04rem;
  }

  .public-anchor-navigation .anchor-navigation.isone .swiper-wrapper {
    justify-content: space-between;
  }
  .public-anchor-navigation .anchor-navigation.isone .swiper-slide {
    margin-right: 0;
  }
}
.inside-body {
  position: relative;
}
.inside-body::after {
  position: absolute;
  content: '';
  top: 19.75em;
  left: 0;
  background: url(/img-common-page/san.svg.jpg) no-repeat right top;
  background-size: 100% auto;
  width: 12.0833333333vw;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  transform: translateX(-28%);
  -webkit-transform: translateX(-28%);
}

.p-pro-detail .inside-body::after {
  top: 31.8em;
}

@media (min-width: 992px) and (max-width: 1750px) {
  .inside-body::after {
    transform: translateX(-40%);
    -webkit-transform: translateX(-40%);
  }
}
@media (max-width: 991.98px) {
  .inside-body::after {
    display: none;
  }
}
.x-navigation-prev {
  position: absolute;
  right: calc(100% + 0.3rem);
  z-index: 1;
  mask: url(/img-images-x/navigation.svg.jpg) center center/contain no-repeat;
  -webkit-mask: url(/img-images-x/navigation.svg.jpg) center center/contain no-repeat;
  background: #333;
  width: 2.3rem;
  height: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}
.x-navigation-prev.ownchain-prev {
  opacity: 0.7;
  background: #fff;
  left: 23px;
}
.x-navigation-prev.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.x-navigation-prev:hover {
  opacity: 1;
}

.x-navigation-next {
  position: absolute;
  left: calc(100% + 0.3rem);
  z-index: 1;
  mask: url(/img-images-x/navigation.svg.jpg) center center/contain no-repeat;
  -webkit-mask: url(/img-images-x/navigation.svg.jpg) center center/contain no-repeat;
  background: #333;
  width: 2.3rem;
  height: 2.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  opacity: 0.1;
}
.x-navigation-next.ownchain-next {
  opacity: 0.7;
  background: #fff;
  left: calc(83% - 48px);
  transform: translateY(-50%) translateX(-50%) rotate(180deg);
}
.x-navigation-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.x-navigation-next:hover {
  opacity: 1;
}

.dynamic-honor-wrap .x-navigation-prev {
  top: 8.9583333333vw;
  transform: translateY(0%);
}
.dynamic-honor-wrap .x-navigation-next {
  top: 8.9583333333vw;
  transform: translateY(0%) rotate(180deg);
}

.pquat-pt-swipbox .x-navigation-prev {
  transform: translateY(calc(-50% - 1.125rem));
}
.pquat-pt-swipbox .x-navigation-next {
  transform: translateY(calc(-50% - 1.125rem)) rotate(180deg);
}

.paplt-download-wrap .x-navigation-prev {
  top: 3.5416666667vw;
  transform: translateY(0%);
}
.paplt-download-wrap .x-navigation-next {
  top: 3.5416666667vw;
  transform: translateY(0%) rotate(180deg);
}

.dynamic-honor-wrap, .ownchain-tabcont-box, .paplt-download-wrap {
  position: relative;
}

.constructing-wrap {
  background: url(/img-images-constructing.webp.jpg) no-repeat bottom #fff;
  background-size: 100% auto;
  padding: 0;
}
.constructing-wrap .inner {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.constructing-wrap .img-wrap {
  width: 23.8541666667vw;
  height: 12.6041666667vw;
  margin-bottom: 2.5rem;
  margin-top: -5.2083333333vw;
}
.constructing-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.constructing-wrap .const-title {
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.constructing-wrap .const-title span {
  color: #E00E1E;
}
.constructing-wrap .const-desc {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #777;
  margin-bottom: 1.25rem;
  width: 25.75rem;
  text-align: center;
}

@media (max-width: 991.98px) {
  .constructing-wrap .const-title {
    font-size: 0.52rem;
    line-height: 0.72rem;
    margin-bottom: 0.32rem;
  }
  .constructing-wrap .const-desc {
    font-size: 0.4rem;
    line-height: 0.6rem;
    width: 6.5rem;
    margin-bottom: 0.5rem;
  }
  .constructing-wrap .img-wrap {
    width: 4.58rem;
    height: 2.42rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
}
/* 动态组件-新闻列表 */
/* 动态组件-推荐产品 */
.dynamic-widget_recommend {
  background: #F6F8FB;
  padding: 3.5em 0 3em;
}

.dynamic-recom-lvtit {
  font-weight: 700;
  line-height: 3.6rem;
  margin-bottom: 1.1rem;
}

.dynamic-recom-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 0px;
}
.dynamic-recom-swiper .inner-slide {
  display: flex;
  align-items: center;
  padding: 1em 1.3em 1em 1em;
  gap: 0 1.5em;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
}
.dynamic-recom-swiper .item-desc {
  font-size: 0.8em;
  line-height: 1.625em;
  margin-bottom: 1.7rem;
  height: 2.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.dynamic-recom-swiper .item-more {
  display: flex;
  align-items: center;
  gap: 0 0.15rem;
}
.dynamic-recom-swiper .item-more .icon {
  mask: url(/img-images-more.svg.jpg) no-repeat center/contain;
  -webkit-mask: url(/img-images-more.svg.jpg) no-repeat center/contain;
  background-color: #E00E1E;
  width: 0.75em;
  height: 0.8em;
}
.dynamic-recom-swiper .item-more .text {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #E00E1E;
  font-weight: 700;
}
.dynamic-recom-swiper .inner-l {
  width: 49.5548961424%;
  min-width: 200px;
}
.dynamic-recom-swiper .item-img {
  padding-top: 63.1736526946%;
  position: relative;
  overflow: hidden;
}
.dynamic-recom-swiper .item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.dynamic-recom-swiper .inner-r {
  flex: 1;
}
.dynamic-recom-swiper .item-title {
  font-size: 1.3em;
  line-height: 1.3846153846em;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.p-application-detail .dynamic-widget_recommend {
  background: #FAFAFA;
}

@media (min-width: 992px) {
  .dynamic-widget_recommend {
    overflow: hidden;
  }
  .dynamic-widget_recommend.isone .rocket-swiper-paging {
    display: none;
  }

  .dynamic-recom-block .rocket-swiper-paging {
    margin-top: 1.5rem;
  }

  .dynamic-recom-swiper {
    overflow: hidden;
    margin: -10px;
    padding: 10px;
  }
  .dynamic-recom-swiper .swiper-wrapper {
    display: flex;
    grid-template-columns: initial;
    grid-column-gap: initial;
    grid-row-gap: initial;
  }
  .dynamic-recom-swiper .inner-slide:hover .item-img img {
    transform: scale(1.03);
  }
  .dynamic-recom-swiper .inner-slide:hover .item-title {
    color: #E00E1E;
  }
}
.p-application-detail .papltdet-recom-wrap .dynamic-recom-block {
  padding-bottom: 0;
}

@media (max-width: 991.98px) {
  .dynamic-widget_recommend {
    padding: 1.2rem 0 1.3rem;
  }

  .dynamic-recom-lvtit {
    line-height: 0.62rem;
    margin-bottom: 0.4rem;
  }

  .dynamic-recom-swiper .inner-r {
    width: 100%;
  }
  .dynamic-recom-swiper .item-title {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.15rem;
  }
  .dynamic-recom-swiper .item-more {
    gap: 0 0.05rem;
    align-items: flex-start;
  }
  .dynamic-recom-swiper .item-more .text {
    font-size: 0.28rem;
    line-height: 0.3rem;
  }
  .dynamic-recom-swiper .item-more .icon {
    width: 0.24rem;
    height: 0.23rem;
    margin-top: 0.03rem;
  }
  .dynamic-recom-swiper .item-desc {
    font-size: 0.28rem;
    line-height: 0.4rem;
    margin-bottom: 0.4rem;
    height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 99;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .dynamic-recom-swiper .inner-l {
    width: 100%;
  }
  .dynamic-recom-swiper .inner-slide {
    padding: 0.3rem 0.3rem 0.62rem 0.3rem;
    flex-direction: column;
    gap: 0.3rem 0;
  }
  .dynamic-recom-swiper .swiper-wrapper {
    grid-template-columns: initial;
    grid-column-gap: initial;
    grid-row-gap: initial;
    display: flex;
  }
}
/* 针对后台 */
.layout-element .dynamic-recom-swiper .swiper-slide {
  width: 30rem;
  margin-right: 1rem;
}

.p-pro-detail .dynamic-recom-swiper .item-img, .p-application .dynamic-recom-swiper .item-img, .p-application-detail .dynamic-recom-swiper .item-img, .p-manufacturing .dynamic-recom-swiper .item-img {
  background: #F1F1F1;
}
.p-pro-detail .dynamic-recom-swiper .item-img img, .p-application .dynamic-recom-swiper .item-img img, .p-application-detail .dynamic-recom-swiper .item-img img, .p-manufacturing .dynamic-recom-swiper .item-img img {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  width: auto;
  height: calc(100% - 1.5rem);
  top: 0;
  left: 50%;
  transform: translateX(-50%) !important;
  aspect-ratio: 1/1;
}

@media (max-width: 991.98px) {
  .p-pro-detail .custom-widget_footConsult-wrap {
    padding-top: 1.2rem;
  }

  .p-pro-detail .dynamic-recom-swiper .item-img img, .p-application .dynamic-recom-swiper .item-img img, .p-application-detail .dynamic-recom-swiper .item-img img, .p-manufacturing .dynamic-recom-swiper .item-img img {
    margin: 0.15rem 0;
    height: calc(100% - 0.3rem);
  }
}
/* 动态组件-荣誉资质 */
.dynamic-widget_honor {
  width: 100%;
  position: relative;
  padding: 6.9rem 0 4.5rem;
}

.dynamic-honor-lvtit {
  font-weight: bold;
  margin-bottom: 2rem;
}

.dynamic-honor-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.dynamic-honor-swiper .swiper-slide {
  width: calc((100% - 33px * 3) / 4);
}
.dynamic-honor-swiper .item-box {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.dynamic-honor-swiper .item-card {
  width: 100%;
  padding: 0.75rem 1.3rem;
  position: relative;
  background: url("/img-common-honor/bg.webp.jpg") no-repeat center bottom #EDEDED;
  background-size: 100% auto;
  margin-bottom: 1rem;
}
.dynamic-honor-swiper .item-logo {
  width: 100%;
  display: none;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
}
.dynamic-honor-swiper .item-logo img {
  flex: none;
  display: block;
  height: 1.5rem;
  object-fit: contain;
  object-position: center center;
}
.dynamic-honor-swiper .item-imgs {
  width: 100%;
  padding: 133% 0 0;
  overflow: hidden;
  position: relative;
}
.dynamic-honor-swiper .item-imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.dynamic-honor-swiper .item-type {
  font-size: 0.8rem;
  line-height: 1.3rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.3rem;
}
.dynamic-honor-swiper .item-title {
  font-size: 1rem;
  line-height: 1.5em;
  color: var(--mt-global-color-black);
  font-weight: bold;
}
.dynamic-honor-swiper .item-modal {
  display: none;
}

.honor-swiper-paging {
  margin: 1.25rem 0 0;
}

.modal-viewbig-box {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(21.7999992371px);
}
.modal-viewbig-box .modal-dialog {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.modal-viewbig-box .modal-content {
  flex: none;
  width: 65vw;
  max-width: 1136px;
  position: relative;
  background: #FFFFFF;
  margin: 0 auto;
  padding: 0 3.5rem;
}
.modal-viewbig-box .modal-header {
  padding: 2rem 0 0 1.1rem;
  margin-bottom: 2.2rem;
  position: relative;
  border-left: solid 8px var(--mt-global-color-red);
}
.modal-viewbig-box .modal-type {
  font-size: 0.8rem;
  line-height: 1.8rem;
  font-weight: bold;
  color: rgba(25, 21, 21, 0.5);
  margin-bottom: 1px;
}
.modal-viewbig-box .modal-title {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: bold;
  color: var(--mt-global-color-black);
}
.modal-viewbig-box .modal-body {
  overflow: hidden;
}
.modal-viewbig-box .imgs {
  width: 100%;
  background-color: #F5F5F7;
  position: relative;
  padding: 1rem;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.modal-viewbig-box .imgs img {
  flex: none;
  width: 48%;
  max-width: 475px;
  height: auto !important;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: relative;
  margin: 0 auto;
}

/* 针对后台 */
.layout-element .dynamic-honor-swiper .swiper-wrapper {
  grid-gap: 0 33px;
}

@media (min-width: 992px) {
  .dynamic-honor-swiper .swiper-slide:hover .item-title {
    color: var(--mt-global-color-red);
  }
}
@media (max-width: 991.98px) {
  .dynamic-widget_honor {
    padding: 1.2rem 0 1.4rem;
    overflow: hidden;
  }

  .dynamic-honor-lvtit {
    margin-bottom: 0.5rem;
  }

  .dynamic-honor-swiper {
    overflow: visible;
  }
  .dynamic-honor-swiper .swiper-slide {
    width: 4.65rem;
  }
  .dynamic-honor-swiper .item-card {
    padding: 0.35rem 0.65rem 0.34rem;
    margin-bottom: 0.36rem;
  }
  .dynamic-honor-swiper .item-logo {
    margin-bottom: 0.2rem;
  }
  .dynamic-honor-swiper .item-logo img {
    height: 0.46rem;
  }
  .dynamic-honor-swiper .item-type {
    font-size: 0.28rem;
    line-height: 0.3rem;
    margin-bottom: 0.2rem;
  }
  .dynamic-honor-swiper .item-title {
    font-size: 0.34rem;
    line-height: 0.48rem;
  }

  .honor-swiper-paging {
    margin: 0.7rem 0 0;
  }

  .modal-viewbig-box::-webkit-scrollbar {
    width: 0;
  }
  .modal-viewbig-box .modal-dialog {
    min-height: 100dvh;
    padding: 0.9rem 0 0;
  }
  .modal-viewbig-box .modal-content {
    width: 100%;
    max-width: none;
    padding: 0 0.5rem;
  }
  .modal-viewbig-box .modal-header {
    padding: 0.95rem 0 0 0.32rem;
    margin-bottom: 0.7rem;
    border-left: solid 4px var(--mt-global-color-red);
  }
  .modal-viewbig-box .modal-type {
    font-size: 0.28rem;
    line-height: 0.3rem;
    margin-bottom: 0.18rem;
  }
  .modal-viewbig-box .modal-title {
    font-size: 0.44rem;
    line-height: 0.58rem;
  }
  .modal-viewbig-box .imgs {
    padding: 0.77rem 0.6rem;
    margin-bottom: 0.4rem;
  }
  .modal-viewbig-box .imgs img {
    width: 100%;
    max-width: 100%;
  }
}
/* 动态组件-制造-客户案例 */
.dynamic-widget_makecase {
  width: 100%;
  position: relative;
}

.mackcase-header {
  margin-bottom: 2.3rem;
}
.mackcase-header .st-lvtit {
  font-weight: bold;
  line-height: 3.6rem;
}
.mackcase-header .st-desc {
  margin: 3px 0 0;
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: var(--mt-global-color-black);
}

.makecase-swiper {
  overflow: hidden;
  position: relative;
}
.makecase-swiper .swiper-slide {
  width: calc((100% - 34px * 2) / 3);
}
.makecase-swiper .slide-box {
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}
.makecase-swiper .slide-imgs {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.makecase-swiper .slide-imgs::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url("/img-common-case/san.svg.jpg") no-repeat center bottom;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
.makecase-swiper .imgs {
  width: 100%;
  position: relative;
  padding: 51.72% 0 0;
  overflow: hidden;
  z-index: 1;
}
.makecase-swiper .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.makecase-swiper .slide-body {
  width: 100%;
  position: relative;
  padding: 1rem 1rem 0.9rem 1.7rem;
}
.makecase-swiper .slide-body::before {
  content: '';
  width: 4px;
  display: block;
  background-color: rgba(34, 34, 34, 0.2);
  position: absolute;
  left: 0;
  top: -2rem;
  bottom: 0;
  pointer-events: none;
}
.makecase-swiper .slide-title {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #333;
  height: calc(1.8rem * 2);
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.makecase-swiper .slide-desc {
  font-size: 0.8rem;
  line-height: 1.3rem;
  color: #333;
  margin: 0.6rem 0 0;
  height: calc(1.3rem * 3);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.makecase-swiper .slide-bot {
  width: 100%;
  position: relative;
  margin: 1.3rem 0 0;
}

/* 针对后台 */
.layout-element .makecase-swiper .swiper-wrapper {
  grid-gap: 0 34px;
}

@media (min-width: 992px) {
  .makecase-swiper .swiper-slide:hover .imgs img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .makecase-swiper .swiper-slide:hover .slide-body::before {
    background-color: var(--mt-global-color-red);
  }
  .makecase-swiper .swiper-slide:hover .xipm-more {
    color: var(--mt-global-color-red);
  }
}
@media (max-width: 991.98px) {
  .mackcase-header {
    margin-bottom: 0.55rem;
  }
  .mackcase-header .st-lvtit {
    line-height: 0.62rem;
  }
  .mackcase-header .st-desc {
    margin: 0.22rem 0 0;
    font-size: 0.3rem;
    line-height: 0.46rem;
  }

  .makecase-swiper .swiper-slide {
    width: 100%;
  }
  .makecase-swiper .slide-body {
    padding: 0.36rem 0.28rem 0 0.5rem;
  }
  .makecase-swiper .slide-body::before {
    background-color: var(--mt-global-color-red);
  }
  .makecase-swiper .slide-title {
    font-size: 0.4rem;
    line-height: 0.52rem;
    height: calc(0.52rem * 2);
  }
  .makecase-swiper .slide-desc {
    margin: 0.26rem 0 0;
    font-size: 0.28rem;
    line-height: 0.4rem;
    -webkit-line-clamp: 4;
    height: calc(0.4rem * 4);
  }

  .makecase-swiper-paging {
    margin: 0.6rem 0 0;
  }
}
/* 动态组件-制造-自主产业链 */
.custom-widget_ownchain {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ownchain-tabbtn-box {
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
}
.ownchain-tabbtn-box::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E9E9EA;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.ownchain-tabbtn-swip {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: #000;
}
.ownchain-tabbtn-swip .swiper-slide {
  width: auto;
}
.ownchain-tabbtn-swip .trigger {
  height: 3.5rem;
  display: flex;
  align-items: center;
  padding: 0 0.65rem;
  position: relative;
  cursor: pointer;
}
.ownchain-tabbtn-swip .trigger::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.ownchain-tabbtn-swip .active {
  color: var(--mt-global-color-red);
  font-weight: bold;
}
.ownchain-tabbtn-swip .active .trigger::after {
  opacity: 1;
  width: 100%;
}

.ownchain-tabcont-swip {
  width: 100%;
  position: relative;
}
.ownchain-tabcont-swip .swiper-slide {
  width: 83%;
}
.ownchain-tabcont-swip .slide-imgs {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ownchain-tabcont-swip .imgs {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ownchain-tabcont-swip .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.ownchain-tabcont-swip .imgs.web {
  padding: 43.28% 0 0;
}
.ownchain-tabcont-swip .imgs.app {
  padding: 67.45% 0 0;
}
.ownchain-tabcont-swip .slide-body {
  width: 100%;
  position: absolute;
  left: 0;
  top: 21.7%;
  z-index: 10;
  color: #333;
  padding: 0 6.76%;
}
.ownchain-tabcont-swip .slide-title {
  font-size: 1.3rem;
  line-height: 1.6rem;
  font-weight: bold;
}
.ownchain-tabcont-swip .slide-desc {
  width: 60%;
  max-width: 33.33em;
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 0.75rem 0 0;
}

/* 针对后台 */
.layout-element .ownchain-tabcont-swip .swiper-wrapper {
  grid-gap: 0 30px;
}

@media (min-width: 992px) {
  .ownchain-tabbtn-swip .swiper-wrapper {
    display: flex;
    justify-content: center;
    grid-gap: 0 5.75%;
  }

  .ownchain-tabcont-swip .swiper-slide:hover .imgs img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
}
@media (min-width: 992px) and (max-width: 1600px) {
  .ownchain-tabcont-swip .slide-body {
    top: 16%;
  }
}
@media (max-width: 991.98px) {
  .ownchain-tabcont-swip {
    overflow: hidden;
  }
  .ownchain-tabcont-swip .swiper-slide {
    width: 100%;
  }
  .ownchain-tabcont-swip .slide-body {
    padding: 0.4rem 0 0;
    text-align: left;
    position: static;
    color: #000;
  }
  .ownchain-tabcont-swip .slide-title {
    font-size: 0.4rem;
    line-height: 0.52rem;
  }
  .ownchain-tabcont-swip .slide-desc {
    width: 100%;
    max-width: none;
    font-size: 0.3rem;
    line-height: 0.46rem;
    margin: 0.2rem 0 0;
  }
}
/* 动态组件-制造-自主产业链 */
.dynamic-widget_toLinkNews {
  background: #EBE7D9;
  position: relative;
}

.dynamic-toLinkNews-block {
  display: flex;
  gap: 0 6.0416666667vw;
  padding: 2.25em 0;
  cursor: pointer;
}
.dynamic-toLinkNews-block .date {
  font-size: 0.8em;
  line-height: 1.625em;
  margin-bottom: 0.35rem;
}
.dynamic-toLinkNews-block .title {
  font-size: 1.3em;
  line-height: 1.3846153846em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.dynamic-toLinkNews-block .title a {
  display: block;
}
.dynamic-toLinkNews-block .desc {
  font-size: 0.9em;
  line-height: 1.6666666667em;
  padding-top: 1.25rem;
  border-top: 1px solid #888;
}
.dynamic-toLinkNews-block .inner-l {
  flex: 1;
  padding: 2.45em 0 0 1.95em;
  position: relative;
}
.dynamic-toLinkNews-block .inner-l::after {
  position: absolute;
  content: '';
  left: 0;
  top: -2.25em;
  width: 0.4em;
  height: 13.95em;
  background: #E00E1E;
}
.dynamic-toLinkNews-block .inner-r {
  width: 33.698630137%;
}
.dynamic-toLinkNews-block .media-wrap {
  padding-top: 61.3821138211%;
  height: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
  display: block;
}
.dynamic-toLinkNews-block .media-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.dynamic-toLinkNews-block .media-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  cursor: pointer;
}
.dynamic-toLinkNews-block .media-button .icon {
  width: 4em;
  height: 4em;
  background: url(/img-images-bf.svg.jpg) no-repeat;
  background-size: contain;
}

@media (min-width: 992px) {
  .dynamic-toLinkNews-block:hover .media-wrap img {
    transform: scale(1.03);
  }
  .dynamic-toLinkNews-block:hover .title {
    color: #E00E1E;
  }
}
@media (max-width: 991.98px) {
  .dynamic-toLinkNews-block {
    padding: 1.2rem 0;
    flex-direction: column;
    gap: 0.6rem 0;
  }
  .dynamic-toLinkNews-block .media-button .icon {
    width: 1.05rem;
    height: 1.05rem;
  }
  .dynamic-toLinkNews-block .inner-r {
    width: 100%;
  }
  .dynamic-toLinkNews-block .desc {
    font-size: 0.3rem;
    line-height: 0.46rem;
    padding-top: 0.3rem;
  }
  .dynamic-toLinkNews-block .title {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.3rem;
  }
  .dynamic-toLinkNews-block .date {
    font-size: 0.28rem;
    line-height: 0.26rem;
    margin-bottom: 0.15rem;
  }
  .dynamic-toLinkNews-block .inner-l {
    padding: 0 0 0 0.38rem;
  }
  .dynamic-toLinkNews-block .inner-l::after {
    width: 0.08rem;
    height: calc(100% + 1.2rem);
    top: -1.2rem;
  }
}
/* 自定义样式-新闻频道 */
.news-list-wrap {
  padding: 3rem 0 6rem;
}
.news-list-wrap .news-list {
  padding: 0em 0.5em 0 0.5em;
  grid-gap: 1rem 1.25em;
  min-height: 30rem;
}
.news-list-wrap .news-list .list-item {
  background: #F6F6F6;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.news-list .inner-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.95em 2.1em 0.95em 2.1em;
  border-bottom: 4px solid #E00E1E;
  gap: 0.75rem 0;
  height: 100%;
}
.news-list .item-desc {
  font-size: 0.8em;
  line-height: 1.625em;
  color: #222;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.news-list .item-img {
  position: relative;
  padding-top: 62.8947368421%;
  margin-bottom: 1rem;
  overflow: hidden;
}
.news-list .item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.news-list .item-more {
  display: flex;
  align-items: center;
  gap: 0 0.15rem;
}
.news-list .item-more .icon {
  mask: url(/img-images-more.svg.jpg) no-repeat center/contain;
  -webkit-mask: url(/img-images-more.svg.jpg) no-repeat center/contain;
  background-color: #E00E1E;
  width: 0.75em;
  height: 0.8em;
}
.news-list .item-more .text {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #E00E1E;
  font-weight: 700;
}
.news-list .item-title {
  font-size: 1.3em;
  line-height: 1.3846153846em;
  color: #222;
  font-weight: 700;
  height: 5.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

.public-inside-menu {
  padding: 1.8rem 0 0 0;
}
.public-inside-menu.menu-ajax {
  padding: 0 0 0 0;
}
.public-inside-menu .inner-swiper {
  position: relative;
}
.public-inside-menu .inner-swiper::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1em;
  background: #E9E9EA;
}
.public-inside-menu span {
  font-size: 0.9rem;
  line-height: 1.2rem;
}
.public-inside-menu a {
  display: flex;
  padding: 1.2rem 0.5rem;
  min-width: 6.8rem;
  position: relative;
  display: flex;
  justify-content: center;
}
.public-inside-menu a::after {
  position: absolute;
  content: "";
  height: 0.2em;
  width: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  background: #E00E1E;
  -webkit-transition: all 0s;
  transition: all 0s;
}
.public-inside-menu .active span {
  color: #E00E1E;
  font-weight: 700;
}
.public-inside-menu .active a::after {
  width: 100%;
}

@media (min-width: 992px) {
  .public-inside-menu a:hover span {
    color: #E00E1E;
  }

  .public-inside-menu .swiper-slide {
    width: auto;
  }
  .public-inside-menu .swiper-wrapper {
    gap: 0 1.25rem;
  }

  .news-list .item-desc {
    height: 3.9rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .news-list .list-item:hover .item-title {
    color: #E00E1E;
  }
  .news-list .list-item:hover .item-img img {
    transform: scale(1.03);
  }
}
@media (max-width: 991.98px) {
  .news-list-wrap {
    padding: 0.6rem 0 1.76rem;
  }
  .news-list-wrap .global-paging {
    padding: 0.6rem 0 0 0;
  }
  .news-list-wrap .news-list {
    padding: 0 0 0 0;
    grid-gap: 0.6rem 0;
    min-height: 7rem;
  }

  .public-inside-menu {
    padding: 0.64rem 0 0;
  }
  .public-inside-menu.menu-ajax .swiper-slide {
    width: auto;
    min-width: 25%;
  }
  .public-inside-menu .inner-swiper::after {
    height: 0.02rem;
    left: -0.5rem;
    width: calc(100% + 1rem);
  }
  .public-inside-menu .swiper-slide {
    width: calc(100% / 4);
  }
  .public-inside-menu a {
    padding: 0.18rem 0.1rem;
    min-width: auto;
  }
  .public-inside-menu a::after {
    height: 0.04rem;
  }
  .public-inside-menu span {
    font-size: 0.3rem;
    line-height: 0.46rem;
    color: #000;
  }

  .news-list {
    padding: 1.05rem 0 0 0;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.6rem 0;
  }
  .news-list .inner-item {
    padding: 0.5rem 0.42rem 0.5rem 0.42rem;
    gap: 0.4rem 0;
    border-bottom: 0.04rem solid #E00E1E;
  }
  .news-list .item-img {
    margin-bottom: 0.29rem;
  }
  .news-list .item-title {
    font-size: 0.4rem;
    line-height: 0.52rem;
    max-height: 1.56rem;
    height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .news-list .item-more {
    gap: 0 0.05rem;
    align-items: flex-start;
  }
  .news-list .item-more .text {
    font-size: 0.28rem;
    line-height: 0.3rem;
  }
  .news-list .item-more .icon {
    width: 0.24rem;
    height: 0.23rem;
    margin-top: 0.03rem;
  }
}
/* 自定义样式-新闻详情 */
.news-del-editor {
  min-height: 50vh;
  padding-bottom: 6em;
  line-height: 1.2;
}
.news-del-editor .rocket-content__inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0;
}
.news-del-editor img {
  max-width: 100%;
  margin: 12px 0;
  height: auto !important;
}
.news-del-editor p {
  margin-bottom: 12px;
}
.news-del-editor p:last-child {
  margin-bottom: 0;
}

.p-news-detail.public-banner-h451 .public-banner .date {
  display: flex;
  align-items: center;
  gap: 0 0.3rem;
  margin-top: 0.85rem;
}
.p-news-detail.public-banner-h451 .public-banner .date .icon {
  width: 0.9em;
  height: 0.9em;
  mask: url(/img-images-date.svg.jpg) no-repeat center/contain;
  -webkit-mask: url(/img-images-date.svg.jpg) no-repeat center/contain;
  background-color: #fff;
}
.p-news-detail.public-banner-h451 .public-banner .date .text {
  font-size: 1em;
  line-height: 1.5em;
  color: #fff;
  font-weight: 400;
}
.p-news-detail.public-banner-h451 .public-banner .title {
  max-width: 64rem;
  font-size: 2.4rem;
  line-height: 2.8rem;
}

@media (max-width: 991.98px) {
  .news-del-editor {
    min-height: 30vh;
    padding-bottom: 0;
  }
  .news-del-editor .rocket-block-text, .news-del-editor .rocket-classical-text {
    padding-bottom: 0rem;
  }
  .news-del-editor .rocket-block-text p, .news-del-editor .rocket-block-text section, .news-del-editor .rocket-classical-text p, .news-del-editor .rocket-classical-text section {
    font-size: 0.28rem !important;
    line-height: 0.52rem !important;
  }
  .news-del-editor .rocket-block-text h1, .news-del-editor .rocket-classical-text h1 {
    font-size: 0.54rem !important;
    line-height: 0.68rem !important;
  }
  .news-del-editor .rocket-block-text h2, .news-del-editor .rocket-classical-text h2 {
    font-size: 0.5rem !important;
    line-height: 0.62rem !important;
    margin: 1rem 0 0.22rem !important;
  }
  .news-del-editor .rocket-block-text h3, .news-del-editor .rocket-classical-text h3 {
    font-size: 0.5rem !important;
    line-height: 0.62rem !important;
    margin: 1rem 0 0.22rem !important;
  }
  .news-del-editor .rocket-block-text h4, .news-del-editor .rocket-classical-text h4 {
    font-size: 0.4rem !important;
    line-height: 0.52rem !important;
    margin: 1rem 0 0.22rem !important;
  }
  .news-del-editor .rocket-block-text h5, .news-del-editor .rocket-classical-text h5 {
    font-size: 0.34rem !important;
    line-height: 0.48rem !important;
    margin: 0.22rem 0 !important;
  }
  .news-del-editor ul li {
    line-height: 0.36rem;
    padding-left: 0.3rem;
  }
  .news-del-editor ul li::before {
    font-size: 0.56rem;
    top: 0.16rem;
  }

  .p-news-detail.public-banner-h451 .public-banner .img-up-text {
    padding-top: 2.4rem;
  }
  .p-news-detail.public-banner-h451 .public-banner .date {
    margin-top: 0.39rem;
    gap: 0 0.1rem;
  }
  .p-news-detail.public-banner-h451 .public-banner .date .text {
    font-size: 0.34rem;
    line-height: 0.48rem;
  }
  .p-news-detail.public-banner-h451 .public-banner .date .icon {
    width: 0.26rem;
    height: 0.26rem;
  }
  .p-news-detail.public-banner-h451 .public-banner img {
    height: 8.21rem;
  }
  .p-news-detail.public-banner-h451 .public-banner .title {
    font-size: 0.54rem;
    line-height: 0.68rem;
  }
}
/* 自定义样式-关于我们 */
.pab-keyword-box .rocket-keyword-item_data .data-text {
  display: none;
}

@media (min-width: 992px) {
  .p-about .main-box::after {
    content: '';
    display: block;
    width: 9.45rem;
    height: calc(100% - 33.96vw - 10.15rem);
    position: absolute;
    right: 0;
    top: calc(33.96vw + 10.15rem);
    z-index: 1;
    pointer-events: none;
    background: url("/img-common-ab/bg.webp.jpg") no-repeat left top;
    background-size: 13.75rem auto;
  }

  .pab-keyword-box .rocket-keyword-item_data {
    padding: 0 0 0.8rem;
    border-bottom: solid 3px #585858;
  }
  .pab-keyword-box .rocket-keyword-item_data img {
    object-position: left center;
  }
}
.p-about .dynamic-widget_honor {
  padding-bottom: 0;
}

@media (max-width: 991.98px) {
  .pab-keyword-box .rocket-keyword-item_data {
    padding: 0 0 0.24rem;
    border-bottom: solid 5px #585858;
  }
}
/* 自定义样式-联系我们 */
.pform-layout-box {
  width: 100%;
  position: relative;
}

.pform-layout-aside {
  width: 38.28vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

.pform-aside-imgs {
  width: 100%;
  height: calc(100vh - 5em);
  display: block;
  position: relative;
  position: sticky;
  top: 5em;
  z-index: 10;
}
.pform-aside-imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right top;
  position: absolute;
  left: 0;
  top: 0;
}

.pform-common-box {
  min-height: calc(50vh - 5rem);
  padding: 4rem 0 5rem;
}
.pform-common-box .rocket-title-xl {
  line-height: 2.4rem;
  margin-bottom: 2rem;
}

.form-common-lvtit {
  margin-bottom: 2.5rem;
  font-weight: bold;
}
.form-common-lvtit span, .form-common-lvtit .red {
  color: var(--mt-global-color-red);
}

.form-submit-after {
  width: 100%;
  min-height: calc(100vh - 5rem - 5.5rem - 5rem);
  display: none;
  position: relative;
}

@media (min-width: 992px) {
  .p-contact .inside-body::after {
    top: -4.35rem;
  }

  .pform-layout-body .rocket-content__inner {
    display: grid;
    grid-template-columns: 43.8% 56.2%;
  }
  .pform-layout-body .rocket-content__inner::before {
    content: '';
    display: block;
    position: relative;
  }

  .p-contact .pform-layout-body .rocket-content__inner {
    display: grid;
    grid-template-columns: initial;
  }
  .p-contact .pform-layout-body .rocket-content__inner::before {
    content: '';
    display: block;
    position: relative;
  }

  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0rem 13.8541666667vw;
  }

  .form-grid-6 {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 0rem 0.5rem;
  }

  .form-common-lvtit {
    line-height: 2.4rem;
  }
}
@media (max-width: 991.98px) {
  .pform-common-box {
    min-height: 0;
    padding: 1.2rem 0 1.5rem;
  }
  .pform-common-box .rocket-title-xl {
    font-size: 0.5rem;
    line-height: 0.62rem;
    margin-bottom: 0.49rem;
  }

  .form-common-lvtit {
    text-align: center;
    margin-bottom: 0.48rem;
  }

  .form-submit-after {
    min-height: 0;
    height: calc(100dvh - 1.42rem - 1.66rem - 1.5rem);
    padding-bottom: 1.42rem;
  }
}
.add-contanct-wrap {
  padding: 5rem 0 5.15rem;
}
.add-contanct-wrap .title {
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.add-contanct-wrap .title span {
  color: #E00E1E;
}
.add-contanct-wrap .desc {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-bottom: 2rem;
}

.add-contanct-list {
  display: flex;
}
.add-contanct-list .list-title {
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: 700;
  padding: 0 0 0.8rem 2rem;
  border-bottom: 1px solid #E4E4E4;
}
.add-contanct-list .item-body {
  padding: 1.5rem 0 0 2rem;
  flex: 1;
}
.add-contanct-list .list-l {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.add-contanct-list .list-l .list-item {
  border-right: 1px solid #E4E4E4;
  display: flex;
  flex-direction: column;
}
.add-contanct-list .list-l .list-item:nth-child(odd) .item-body {
  padding-left: 0;
}
.add-contanct-list .list-l .list-item:nth-child(odd) .list-title {
  padding-left: 0;
}
.add-contanct-list .list-l .list-item:nth-child(even) .item-body {
  background: #FAFAFA;
}
.add-contanct-list .address-title {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.add-contanct-list .address-desc {
  font-size: 0.8rem;
  line-height: 1.3rem;
}
.add-contanct-list .address-desc span {
  color: #E00E1E;
  font-weight: 700;
}
.add-contanct-list .list-r {
  width: 25.9589041096%;
}

.address-list .item {
  margin-bottom: 1.25rem;
}
.address-list .item:last-child {
  margin-bottom: 0;
}

.code-list-body {
  padding: 1.5rem 0 0 2rem;
}
.code-list-body .code-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 1.25rem;
}
.code-list-body p {
  font-size: 0.7rem;
  line-height: 0.8rem;
  color: rgba(34, 34, 34, 0.8);
  text-align: center;
}
.code-list-body .imgwrap {
  position: relative;
  border: 0.25rem solid #EAEAEA;
  padding-top: 100%;
  height: 0;
  margin-bottom: 0.55rem;
}
.code-list-body .imgwrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.add-joinUs-wrap {
  position: relative;
}
.add-joinUs-wrap .rocket-content__inner {
  height: 100%;
  display: flex;
  justify-content: center;
}
.add-joinUs-wrap .rocket-title-xl {
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
}
.add-joinUs-wrap .rocket-title-xl span {
  color: #E00E1E;
}
.add-joinUs-wrap .svgwrap {
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1.9rem;
}
.add-joinUs-wrap .svgwrap img {
  width: 100%;
  height: 100%;
}
.add-joinUs-wrap .uptext {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1.55rem 0 1.55rem;
}
.add-joinUs-wrap .inner-box {
  width: 29.55rem;
  background: rgba(255, 255, 255, 0.69);
  backdrop-filter: blur(11.4499998093px);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 3.5rem 0 0 0;
}
.add-joinUs-wrap .banner-wrap {
  height: 22.5rem;
}
.add-joinUs-wrap .banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.public-button-wrap.hollow {
  display: flex;
  margin-top: 1.25rem;
  position: relative;
}
.public-button-wrap.hollow .public-button > * {
  background: none;
  border: 1px solid #e00e1e;
}
.public-button-wrap.hollow .public-button i {
  background: #e00e1e;
}
.public-button-wrap.hollow .public-button span {
  color: #e00e1e;
  font-weight: 700;
}
.public-button-wrap.hollow .showQRCode {
  position: absolute;
  background: none !important;
  border: 0 !important;
  left: 5.2rem;
  bottom: 0.8rem;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  pointer-events: none;
}
.public-button-wrap.hollow .showQRCode img {
  width: 8.3333333333vw;
  height: 9.6354166667vw;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.public-button-wrap.hollow .public-button {
  position: relative;
}
.public-button-wrap.hollow .public-button.active .showQRCode {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

@media (min-width: 992px) {
  .public-button-wrap.hollow .public-button:hover .showQRCode {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  .public-button-wrap.hollow .public-button:hover > * {
    background: #E00E1E;
  }
  .public-button-wrap.hollow .public-button:hover i {
    background: #fff;
  }
  .public-button-wrap.hollow .public-button:hover span {
    color: #fff;
  }
}
@media (max-width: 991.98px) {
  .public-button-wrap.hollow .showQRCode {
    left: 2.7rem;
    bottom: -0.54rem;
    width: initial !important;
    height: initial !important;
    pointer-events: auto !important;
  }
  .public-button-wrap.hollow .showQRCode img {
    width: 1.6rem;
    height: 1.85rem;
  }

  .add-joinUs-wrap .rocket-title-xl {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.4rem;
  }
  .add-joinUs-wrap .svgwrap {
    width: 0.66rem;
    height: 0.66rem;
    margin-bottom: 0.4rem;
  }
  .add-joinUs-wrap .inner-box {
    width: 5.9rem;
    padding: 1.08rem 0 0 0;
  }
  .add-joinUs-wrap .banner-wrap {
    height: 6.6rem;
  }
  .add-joinUs-wrap .uptext {
    padding: 0.8rem 0 0.8rem;
  }

  .code-list-body {
    padding: 0.34rem 0 0 0;
  }
  .code-list-body .imgwrap {
    border: 0.05rem solid #EAEAEA;
    width: 2.5rem;
    height: 2.5rem;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.13rem;
  }
  .code-list-body p {
    font-size: 0.3rem;
    line-height: 0.46rem;
  }
  .code-list-body .code-list {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 0.25rem;
    grid-gap: 0 0.25rem;
  }

  .public-button-wrap.hollow {
    margin-top: 0.3rem;
  }
  .public-button-wrap.hollow .public-button > * {
    width: 2.8rem;
    height: 0.84rem;
  }
  .public-button-wrap.hollow .public-button span {
    font-size: 0.28rem;
    line-height: 0.28rem;
  }

  .address-list .item {
    margin-bottom: 0.3rem;
  }

  .add-contanct-list {
    flex-direction: column;
  }
  .add-contanct-list .list-r {
    padding: 0.8rem 0 0rem;
  }
  .add-contanct-list .address-desc {
    font-size: 0.3rem;
    line-height: 0.46rem;
  }
  .add-contanct-list .address-title {
    font-size: 0.34rem;
    line-height: 0.48rem;
    margin-bottom: 0.05rem;
  }
  .add-contanct-list .list-r {
    width: 100%;
  }
  .add-contanct-list .list-title {
    font-size: 0.4rem;
    line-height: 0.52rem;
    padding: 0 0 0.3rem 0;
  }
  .add-contanct-list .list-l {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0rem 0;
    margin: 0 -0.5rem;
  }
  .add-contanct-list .list-l .list-item {
    border-right: 0;
    padding: 0.8rem 0.5rem 0.8rem 0.5rem;
  }
  .add-contanct-list .list-l .list-item:nth-child(even) {
    background: #FAFAFA;
  }
  .add-contanct-list .item-body {
    padding: 0.29rem 0 0 0;
  }

  .add-contanct-wrap {
    padding: 1rem 0 1.2rem;
  }
  .add-contanct-wrap .title {
    line-height: 0.62rem;
    margin-bottom: 0.3rem;
  }
  .add-contanct-wrap .desc {
    font-size: 0.3rem;
    line-height: 0.46rem;
    margin-bottom: 0rem;
  }
}
/* 自定义样式-样品申请 */
.fmsample-item-params {
  width: 100%;
  display: grid;
  grid-gap: 1rem 0;
}

.fmsample-item-handle {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin: 1rem 0 0;
  font-size: 14px;
  line-height: 24px;
  z-index: 5;
}
.fmsample-item-handle .ico {
  width: 14px;
  height: 14px;
  flex: none;
  display: block;
  background-color: currentColor;
  margin: 0 5px 0 0;
}
.fmsample-item-handle .ico-del {
  -webkit-mask: url("/img-common-form/del.svg.jpg") no-repeat center/contain;
  mask: url("/img-common-form/del.svg.jpg") no-repeat center/contain;
}
.fmsample-item-handle .text {
  position: relative;
}
.fmsample-item-handle .text::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  bottom: 0.1em;
}
.fmsample-item-handle .handle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btn-del-sample {
  color: var(--mt-global-color-red);
}

.fmsample-add-box {
  font-size: 14px;
  line-height: 24px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}

.btn-add-sample {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--mt-global-color-black);
}
.btn-add-sample .ico {
  width: 14px;
  height: 14px;
  flex: none;
  display: block;
  background-color: currentColor;
  margin: 0 5px 0 0;
}
.btn-add-sample .ico-add {
  -webkit-mask: url("/img-common-form/add.svg.jpg") no-repeat center/contain;
  mask: url("/img-common-form/add.svg.jpg") no-repeat center/contain;
}
.btn-add-sample .text {
  position: relative;
}
.btn-add-sample .text::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  bottom: 0.1em;
}

.fmsample-list-wrap {
  position: relative;
}

.form-multidata-list {
  width: 100%;
  position: relative;
  display: grid;
  grid-gap: 2rem 0;
}
.form-multidata-list.has-multnum .form-multidata-item:nth-child(1) .fmsample-item-handle {
  display: none;
}

.form-multidata-item:nth-child(1) .btn-del-sample {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .fmsample-list-wrap {
    margin-bottom: 0.5rem;
  }

  .form-multidata-list {
    grid-gap: 1rem 0;
  }

  .fmsample-item-params {
    grid-gap: 0.5rem 0;
  }

  .fmsample-item-handle {
    margin: 0.5rem 0 0;
    font-size: 0.3rem;
    line-height: 0.32rem;
  }
  .fmsample-item-handle .ico {
    width: 0.3rem;
    height: 0.3rem;
    margin: 0 0.1rem 0 0;
  }
  .fmsample-item-handle .text::after {
    bottom: 0;
  }

  .fmsample-add-box {
    font-size: 0.3rem;
    line-height: 0.32rem;
  }

  .btn-add-sample .ico {
    width: 0.2rem;
    height: 0.2rem;
    margin: 0 0.15rem 0 0;
  }
  .btn-add-sample .text::after {
    display: none;
  }
}
/* 自定义样式-产品列表 */
.pro-table-wrap {
  padding: 40px 10px 0;
  min-height: 30vh;
}
.pro-table-wrap .header-top .inner_th_title {
  min-height: 38px;
}
.pro-table-wrap .header-bottom {
  padding-top: 18px;
}
.pro-table-wrap table, .pro-table-wrap .el-scrollbar__view {
  border: 0;
  min-width: 100%;
}
.pro-table-wrap table th, .pro-table-wrap .el-scrollbar__view th {
  border-right: 1px solid #C7C7C7 !important;
}
.pro-table-wrap .el-checkbox__inner {
  border: 1px solid #bebebe;
}
.pro-table-wrap .el-table td.el-table__cell, .pro-table-wrap .el-table th.el-table__cell.is-leaf {
  border: 0;
  border-bottom: 3px solid #C7C7C7;
  position: relative;
}
.pro-table-wrap .el-table__border-bottom-patch, .pro-table-wrap .el-table__border-left-patch, .pro-table-wrap .el-table--border .el-table__inner-wrapper:after, .pro-table-wrap .el-table--border:after {
  background: #fff;
}

.el-table {
  overflow: visible !important;
}
.el-table td {
  border: 0;
}

.el-table--border .el-table__cell {
  border-right: 0;
}

.el-table .cell {
  overflow: initial;
}

td.el-table__cell {
  border-bottom: 1px solid #E5E5E5 !important;
}

.el-table.is-scrolling-left.el-table--border .el-table-fixed-column--left.is-last-column.el-table__cell {
  border-right: 1px solid #C5C5C5;
}

.el-table__header-wrapper {
  position: sticky;
  z-index: 9;
  top: 5rem;
}

.el-table__header-wrapper th {
  background: #F0F0F0 !important;
  padding: 20px 18px 24px 20px !important;
}
.el-table__header-wrapper th .cell {
  padding: 0;
}
.el-table__header-wrapper th .inner_th_public {
  display: flex;
  flex-direction: column;
}
.el-table__header-wrapper th.el-table__cell {
  vertical-align: top;
}
.el-table__header-wrapper th .inner_th_title_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 0 7px;
  position: relative;
}
.el-table__header-wrapper th .inner_th_title {
  font-size: 16px;
  line-height: 16px;
  color: #222;
  font-weight: 700;
}

.tbody-thead-one {
  display: flex;
  justify-content: space-between;
}

.el-table__body-wrapper .el-table__row {
  background: #fff;
}
.el-table__body-wrapper .el-table__row:nth-child(even) {
  background: #fafafa;
}
.el-table__body-wrapper .el-table__cell {
  padding: 19px !important;
}
.el-table__body-wrapper .el-table__cell .cell {
  padding: 0;
}

.tbody-thead-one-left {
  display: flex;
  align-items: center;
  gap: 0 7px;
}

.tbody-thead-one-right {
  display: flex;
  align-items: center;
  gap: 0 9px;
}
.tbody-thead-one-right span {
  font-size: 14px;
  line-height: 24px;
  color: rgba(34, 34, 34, 0.8);
}
.tbody-thead-one-right .icon {
  mask: url(/img-images-load_table_icon.svg.jpg) no-repeat center/contain;
  -webkit-mask: url(/img-images-load_table_icon.svg.jpg) no-repeat center/contain;
  background-color: #222;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.td-other-title {
  font-size: 0.8rem;
  line-height: 1.3rem;
  color: #000;
}

.td-one-title {
  font-size: 0.8rem;
  line-height: 1.3rem;
  font-weight: 700;
  color: #000;
  cursor: pointer;
}

.el-checkbox__input .el-checkbox__inner, .typeIsSelect-wrap .el-checkbox.el-checkbox--large .el-checkbox__inner {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #F7F7F7;
}
.el-checkbox__input .el-checkbox__input.is-checked + .el-checkbox__label, .typeIsSelect-wrap .el-checkbox.el-checkbox--large .el-checkbox__input.is-checked + .el-checkbox__label {
  color: #222;
}
.el-checkbox__input.is-checked .el-checkbox__inner, .typeIsSelect-wrap .el-checkbox.el-checkbox--large.is-checked .el-checkbox__inner {
  background: #E00E1E;
  border-color: #E00E1E;
}
.el-checkbox__input.is-checked .el-checkbox__inner:after, .typeIsSelect-wrap .el-checkbox.el-checkbox--large.is-checked .el-checkbox__inner:after {
  top: 2px;
  left: 5px;
}

.el-table__header-wrapper .pro_checkbox, .el-table__body-wrapper .pro_checkbox {
  width: 16px;
  height: 16px;
}
.el-table__header-wrapper .pro_checkbox .el-checkbox__input, .el-table__body-wrapper .pro_checkbox .el-checkbox__input {
  width: 100%;
  height: 100%;
  display: block;
}
.el-table__header-wrapper .pro_checkbox .el-checkbox__input .el-checkbox__label, .el-table__body-wrapper .pro_checkbox .el-checkbox__input .el-checkbox__label {
  font-size: 16px;
  line-height: 16px;
  padding-left: 8px;
}

@media (min-width: 992px) {
  .el-scrollbar__wrap {
    overflow: hidden !important;
  }
}
.search_product {
  position: relative;
}
.search_product .inputwrap {
  position: relative;
}
.search_product a {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  cursor: pointer;
}
.search_product .icon_search {
  mask: url(/img-images-search._prosvg.svg.jpg) no-repeat center/contain;
  -webkit-mask: url(/img-images-search._prosvg.svg.jpg) no-repeat center/contain;
  background-color: #222;
  width: 18px;
  height: 18px;
}
.search_product input {
  width: 100%;
  font-size: 16px;
  line-height: 16px;
  color: #222222;
  padding: 0 40px 0 10px;
  font-weight: normal;
}
.search_product input::placeholder {
  color: rgba(34, 34, 34, 0.3);
}

.pro_table-operate-box {
  margin-bottom: 20px;
}

.pro_table-operate {
  display: flex;
  justify-content: flex-end;
  gap: 0 4px;
}
.pro_table-operate .list-item {
  cursor: pointer;
}
.pro_table-operate .public-button .box {
  gap: 0 10px;
  width: 120px;
  height: 42px;
  min-width: auto;
}
.pro_table-operate .public-button span {
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
}
.pro_table-operate .public-button .icon_export {
  mask: url(/img-images-daochu.svg.jpg) no-repeat center/contain;
  -webkit-mask: url(/img-images-daochu.svg.jpg) no-repeat center/contain;
  background-color: #fff;
  width: 26px;
  height: 26px;
}

.pro_table_sort {
  position: absolute;
  right: 37px;
  top: 21px;
  display: flex;
  cursor: pointer;
}
.pro_table_sort svg {
  width: 7px;
  height: 14px;
}
.pro_table_sort.desc .tubiaodesc {
  fill: #E00E1E;
  stroke: #E00E1E;
}
.pro_table_sort.asc .tubiaoasc {
  fill: #E00E1E;
  stroke: #E00E1E;
}

.search_product input {
  height: 40px;
  border-radius: 2px;
  overflow: hidden;
}

.inner_th_one .pro_table_sort {
  right: 4px;
  top: 3px;
}

.pro_table_visibility {
  display: flex;
  position: absolute;
  right: 15px;
  top: 23px;
  display: flex;
  cursor: pointer;
}
.pro_table_visibility .icon {
  mask: url(/img-images-pro/close.svg.jpg) no-repeat center/contain;
  -webkit-mask: url(/img-images-pro/close.svg.jpg) no-repeat center/contain;
  background-color: #222;
  width: 12px;
  height: 12px;
}

.pro_filter_panel {
  cursor: pointer;
  display: flex;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.pro_filter_panel .icon {
  background: url(/img-images-tcsx.svg.jpg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
}

.pro_filter_popup {
  position: absolute;
  top: 0;
  right: 0;
  width: 210px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #DEE0E3;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  z-index: 9;
  background: #f0f0f0;
  padding-left: 40px;
  padding-bottom: 20px;
  opacity: 0;
}
.pro_filter_popup.opa {
  opacity: 1;
}
.pro_filter_popup .typeIsSelect-wrap {
  width: 134px;
}

.pro-table-box .el-scrollbar__thumb {
  background-color: #797B7F;
  opacity: 1;
}
.pro-table-box .elScroll .inner {
  height: 80px;
}

.floating-scroll-bar {
  opacity: 0;
  transition: all 0.3s;
}
.floating-scroll-bar.show {
  opacity: 1;
}

.is-number-filter-box {
  display: flex;
  gap: 0 16px;
}
.is-number-filter-box .is-l {
  margin-left: 1px;
}
.is-number-filter-box .el-slider.is-vertical .el-slider__button-wrapper {
  left: -5px;
  background: none;
}
.is-number-filter-box .el-slider__button-wrapper {
  width: 12px;
  height: 12px;
  display: flex;
}
.is-number-filter-box .el-slider__button {
  height: 100%;
  width: 100%;
  border: 0;
  background: #979797;
}
.is-number-filter-box .el-slider.is-vertical .el-slider__runway {
  margin: 0 5px;
  width: 2px;
  background: #dddbdb;
}
.is-number-filter-box .el-slider.is-vertical .el-slider__bar {
  width: 2px;
  background: rgba(151, 151, 151, 0.5);
}
.is-number-filter-box .is-r {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 210px;
}
.is-number-filter-box .dy, .is-number-filter-box .xy {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.is-number-filter-box .inputwrap {
  max-width: 80px;
}
.is-number-filter-box .inputwrap input {
  width: 100%;
  height: 32px;
  border-radius: 2px;
  font-size: 16px;
  line-height: 16px;
  color: rgba(34, 34, 34, 0.3);
  padding-left: 9px;
  padding-right: 9px;
  font-weight: normal;
}
.is-number-filter-box .greater-icon {
  display: flex;
}
.is-number-filter-box .greater-icon .icon {
  background: url(/img-images-xy.svg.jpg) no-repeat;
  background-size: contain;
  width: 9px;
  height: 11px;
}
.is-number-filter-box .lessthan-icon {
  display: flex;
}
.is-number-filter-box .lessthan-icon .icon {
  background: url(/img-images-dy.svg.jpg) no-repeat;
  background-size: contain;
  width: 9px;
  height: 11px;
}

.typeselect_item {
  margin-bottom: 27px;
}
.typeselect_item:last-child {
  margin-bottom: 0;
}

.el-checkbox__inner:hover {
  border-color: #E00E1E !important;
}

.typeIsSelect-wrap {
  margin-top: 6px;
  padding-bottom: 4px;
  min-height: 22px;
  overflow-y: auto;
  max-height: 190px;
}
.typeIsSelect-wrap::-webkit-scrollbar {
  width: 2px;
}
.typeIsSelect-wrap::-webkit-scrollbar-thumb {
  width: 2px;
  background-color: rgba(151, 151, 151, 0.5);
  border-radius: 4px;
}
.typeIsSelect-wrap::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 2px;
}
.typeIsSelect-wrap::-webkit-scrollbar-track-piece {
  background-color: #eee;
}
.typeIsSelect-wrap .el-checkbox.el-checkbox--large {
  height: auto;
  display: flex;
  align-items: center;
}
.typeIsSelect-wrap .el-checkbox.el-checkbox--large .el-checkbox__label {
  font-size: 16px;
  line-height: 16px;
  padding-left: 8px;
}

.pro-filter-header {
  max-height: 0;
  overflow: hidden;
  transition: all 0s;
  cursor: pointer;
}
.pro-filter-header.open {
  max-height: 500px;
  transition: all 0.5s;
}

.filter_box {
  position: relative;
  cursor: pointer;
}
.filter_box .title {
  display: flex;
  align-items: center;
  padding: 5px 16px;
  border: 1px solid #DEE0E3;
  border-radius: 4px;
  background: #f8f8f8;
}
.filter_box .title .svgwrap {
  display: flex;
  margin-right: 8px;
}
.filter_box .title span {
  font-size: 14px;
  line-height: 24px;
  color: #18212C;
  font-weight: 400;
}
.filter_box.click .title {
  background: #034B9F;
  border: 1px solid #034B9F;
}
.filter_box.click .title span {
  color: #fff;
}
.filter_box.click .title svg path, .filter_box.click .title svg rect {
  stroke: #fff;
}

.filter_box_more {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  padding-top: 3px;
  z-index: 12;
  display: none;
}

.filter_box_inner {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.filter_box_inner > .box {
  display: flex;
  flex-direction: column;
}
.filter_box_inner .head {
  padding: 20px 0 15px 20px;
  border-bottom: 1px solid #DEE0E3;
  display: flex;
}
.filter_box_inner .head span {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #000;
}

.drag_list_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.drag_list_item:last-child {
  margin-bottom: 0;
}
.drag_list_item > .left {
  display: flex;
  align-items: center;
}
.drag_list_item > .left span {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #000;
}
.drag_list_item > .left .svgwrap {
  display: flex;
  margin-right: 10px;
}
.drag_list_item > .left .svgwrap svg {
  width: 6px;
  height: 12px;
  cursor: grab;
}
.drag_list_item > .right .svgwrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.drag_list_item > .right .svgwrap svg {
  width: 12px;
  height: 12px;
}

.drag_list {
  padding: 30px 36px 30px 20px;
}

.el-table__column-resize-proxy {
  border-right: 1px solid #E00E1E;
}

.empty_data {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 50px;
}
.empty_data .imgwrap {
  display: flex;
  margin-bottom: 15px;
}
.empty_data .imgwrap img {
  width: 62px;
}
.empty_data .desc {
  font-size: 14px;
  line-height: 14px;
  color: #666;
}
.empty_data.opa {
  opacity: 1;
}

.p-prolist .custom-widget_footConsult {
  margin-top: 4em;
}

@media (max-width: 991.98px) {
  .pro-table-wrap {
    padding: 1rem 0 0 0;
  }

  .filter_box_inner {
    border-radius: 0;
    box-shadow: none;
    border-top: 0.16rem solid #F8F8F8;
  }

  .pro_table-operate-box {
    padding: 0 0.5rem;
    margin-bottom: 0.4rem;
  }

  .pro_table-operate {
    gap: 0.2rem 0.1rem;
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
  .pro_table-operate .public-button .icon_export {
    width: 0.35rem;
    height: 0.35rem;
  }
  .pro_table-operate .public-button .box {
    width: 100%;
    gap: 0 0.12rem;
  }
  .pro_table-operate .list-item:nth-child(1) {
    width: calc(50% - 0.05rem);
  }
  .pro_table-operate .list-item:nth-child(2) {
    width: calc(50% - 0.05rem);
  }
  .pro_table-operate .list-item:nth-child(3) {
    width: 100%;
  }

  .el-table__header-wrapper {
    top: 1.42rem;
  }
  .el-table__header-wrapper th {
    padding: 20px 10px 20px 15px !important;
  }
  .el-table__header-wrapper th .inner_th_title {
    font-size: 15px;
    line-height: 1em;
  }
  .el-table__header-wrapper th.el-table_1_column_1 {
    padding-left: 0.5rem !important;
  }

  .pro_table_sort {
    right: 39px;
  }

  .td-other-title {
    font-size: 14px;
    line-height: 14px;
  }

  .td-one-title {
    font-size: 14px;
    line-height: 14px;
  }

  .tbody-thead-one-right {
    gap: 0 6px;
  }
  .tbody-thead-one-right .icon {
    width: 14px;
    height: 14px;
  }
  .tbody-thead-one-right span {
    font-size: 13px;
    line-height: 14px;
  }

  .pro_table_visibility {
    top: 20px;
  }
  .pro_table_visibility .icon {
    width: 17px;
    height: 17px;
  }

  .inner_th_one .pro_table_sort {
    top: 2px;
  }

  .pro-table-wrap .el-scrollbar__bar {
    bottom: 0;
    border-radius: 0;
  }
  .pro-table-wrap .el-scrollbar__thumb {
    background: #E00E1E;
  }

  .el-table__body-wrapper .el-scrollbar__bar {
    display: block !important;
  }

  .public_proapp_pop::-webkit-scrollbar {
    width: 0px;
  }
  .public_proapp_pop::-webkit-scrollbar-thumb {
    width: 0px;
    background-color: #358D06;
    border-radius: 0px;
  }
  .public_proapp_pop::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 0px;
  }
  .public_proapp_pop::-webkit-scrollbar-track-piece {
    background-color: #eee;
  }
  .public_proapp_pop .public_proapp_content {
    padding-top: 2.26rem;
    padding-bottom: 0.6rem;
    overflow-y: auto;
    height: 100%;
  }
  .public_proapp_pop .public_proapp_content::-webkit-scrollbar {
    width: 0px;
  }
  .public_proapp_pop .public_proapp_content::-webkit-scrollbar-thumb {
    width: 0px;
    background-color: #358D06;
    border-radius: 0px;
  }
  .public_proapp_pop .public_proapp_content::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 0px;
  }
  .public_proapp_pop .public_proapp_content::-webkit-scrollbar-track-piece {
    background-color: #eee;
  }
  .public_proapp_pop .modal-dialog {
    height: 100%;
  }
  .public_proapp_pop .modal-content {
    height: 100%;
    background: #fff;
    transition: transform 0.5s;
    transform: translateY(100%);
    background: #F8F8F8;
  }
  .public_proapp_pop.show .modal-content {
    transform: translateY(0%);
  }
  .public_proapp_pop .close_pops {
    display: flex;
  }
  .public_proapp_pop .close_pops .icon {
    mask: url(/img-images-close_pro_tc.svg.jpg) no-repeat center/contain;
    -webkit-mask: url(/img-images-close_pro_tc.svg.jpg) no-repeat center/contain;
    background-color: #222;
    width: 0.42rem;
    height: 0.42rem;
  }
  .public_proapp_pop .public_pop_header {
    padding: 0.6rem 0.5rem 0.25rem;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 3;
    background: #fff;
  }
  .public_proapp_pop .close-wrap {
    display: flex;
    justify-content: flex-end;
  }
  .public_proapp_pop .public_pop_title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.28rem;
    line-height: 0.28rem;
    padding: 0.55rem 0 0 0;
  }
  .public_proapp_pop .public_pop_title-wrap .reset_button {
    color: rgba(0, 0, 0, 0.6);
  }

  .public_proapp_pop_Column .public_proapp_content {
    padding-bottom: 0;
    padding-top: 2.1rem;
  }
  .public_proapp_pop_Column .modal-content {
    background: #fff;
  }

  .filterOptions-list .inner-l {
    display: flex;
    align-items: center;
    gap: 0 0.12rem;
  }
  .filterOptions-list .list-item-body {
    display: none;
  }
  .filterOptions-list .list-item-body.gray {
    position: relative;
  }
  .filterOptions-list .list-item-body.gray::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 3;
  }
  .filterOptions-list .list-item-title {
    padding: 0.03rem 0;
    position: relative;
  }
  .filterOptions-list .list-item-title .inner-r {
    position: absolute;
    right: -0.5rem;
    padding-top: 0.25rem;
    padding-right: 0.5rem;
    display: flex;
    height: 0.7rem;
    top: 0;
    width: 40%;
    justify-content: flex-end;
    z-index: 2;
  }
  .filterOptions-list .list-item-title .icon {
    mask: url(/img-images-pro_arrow_down.svg.jpg) no-repeat center/contain;
    -webkit-mask: url(/img-images-pro_arrow_down.svg.jpg) no-repeat center/contain;
    background-color: #666;
    width: 0.31rem;
    height: 0.18rem;
    transition: all 0.3s;
  }
  .filterOptions-list .title {
    font-size: 0.28rem;
    line-height: 0.56rem;
  }
  .filterOptions-list .input-value {
    font-size: 14px;
    line-height: 14px;
    color: rgba(34, 34, 34, 0.3);
    padding: 1px 10px;
    background: #F0F0F0;
    border-radius: 2px;
    min-width: 40px;
    display: block;
  }
  .filterOptions-list .list-item {
    padding: 0 0.5rem;
    background: #fff;
    margin-bottom: 0.1rem;
  }
  .filterOptions-list .list-item.noclick .list-item-title {
    position: relative;
  }
  .filterOptions-list .list-item.noclick .list-item-title .el-checkbox__input.is-checked .el-checkbox__inner {
    background: #ccc;
    border-color: #ccc;
  }
  .filterOptions-list .list-item.noclick .list-item-title::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
  }
  .filterOptions-list .list-item.cur .list-item-title .icon {
    transform: rotate(-180deg);
  }
  .filterOptions-list .list-item:last-child {
    margin-bottom: 0;
  }
  .filterOptions-list .typeIsnumber-wrap {
    padding: 0.33rem 0 0.59rem 0;
  }
  .filterOptions-list .typeIsSelect-wrap {
    height: auto;
    max-height: 118px;
    padding: 0.21rem 0 0.5rem;
  }
  .filterOptions-list .typeIsSelect-wrap .el-checkbox.el-checkbox--large .el-checkbox__label {
    font-size: 14px;
    line-height: 16px;
  }
  .filterOptions-list .el-checkbox__input.is-focus {
    background: #fff !important;
  }
  .filterOptions-list .el-checkbox__inner:hover {
    border: 1px solid rgba(190, 190, 190, 0.6) !important;
  }
  .filterOptions-list .el-checkbox__input .el-checkbox__inner {
    background: #fff;
  }
  .filterOptions-list .el-checkbox__input.is-checked .el-checkbox__inner {
    background: #E00E1E;
  }
  .filterOptions-list .typeselect_item {
    margin-bottom: 12px;
  }
  .filterOptions-list .typeselect_item .el-checkbox__input .el-checkbox__inner {
    background: #fff;
  }
  .filterOptions-list .is-number-filter-box {
    flex-direction: column;
    gap: 0 0;
  }
  .filterOptions-list .is-number-filter-box .inputwrap {
    max-width: auto;
  }
  .filterOptions-list .is-number-filter-box .inputwrap input {
    width: 0.81rem;
    height: 0.32rem;
    border-radius: 2px;
    background: #F0F0F0;
    padding-left: 0.2rem;
    font-size: 0.28rem;
    line-height: 0.28rem;
    color: rgba(34, 34, 34, 0.3);
  }
  .filterOptions-list .is-number-filter-box .greater-icon .icon, .filterOptions-list .is-number-filter-box .lessthan-icon .icon {
    width: 0.23rem;
    height: 0.28rem;
  }
  .filterOptions-list .is-number-filter-box .dy, .filterOptions-list .is-number-filter-box .xy {
    gap: 0 0.06rem;
  }
  .filterOptions-list .is-number-filter-box .is-r {
    height: auto;
    flex-direction: row-reverse;
    padding: 0.23rem 0 0 0;
    width: 6.02rem;
  }
  .filterOptions-list .is-number-filter-box .el-slider {
    width: 5.75rem;
    margin-left: 0.12rem;
  }
  .filterOptions-list .is-number-filter-box .el-slider__button-wrapper {
    width: 0.3rem;
    height: 0.3rem;
  }
  .filterOptions-list .is-number-filter-box .el-slider__runway {
    height: 0.04rem;
  }
  .filterOptions-list .is-number-filter-box .el-slider__button-wrapper {
    top: -0.14rem;
  }
  .filterOptions-list .is-number-filter-box .el-slider__bar {
    background: #979797;
  }
  .filterOptions-list .is-number-filter-box .el-slider, .filterOptions-list .is-number-filter-box .el-slider__bar {
    height: 0.04rem;
  }

  .show_product_num {
    display: flex;
    justify-content: center;
    padding: 0.6rem 0 0 0;
  }
  .show_product_num .text {
    font-size: 0.28rem;
    line-height: 0.4rem;
    padding: 0.22rem 0.46rem;
    background: #E00E1E;
    color: #fff;
  }

  .p-prolist .custom-widget_footConsult {
    margin-top: 1.55rem;
  }
}
@media (min-width: 992px) {
  .td-one-title:hover {
    color: #E00E1E;
    cursor: pointer;
  }

  .tbody-thead-one-right:hover {
    cursor: pointer;
  }
  .tbody-thead-one-right:hover span {
    color: #E00E1E;
  }
  .tbody-thead-one-right:hover .icon {
    background-color: #E00E1E;
  }
}
/* 自定义样式-产品详细 */
/* 自定义样式-产品详细 */
.icon-close {
  mask: url(/img-common-closed.svg.jpg) no-repeat center/contain;
  width: 1rem;
  height: 1rem;
  background: #fff;
}

.modal-watchImg.modal {
  background: rgba(0, 0, 0, 0.7);
  padding-right: 0 !important;
}
.modal-watchImg .modal-close {
  right: calc(-3.4rem - 20px);
  top: -1.15em;
  display: flex;
}
.modal-watchImg .imgDom-wrap {
  max-width: 100%;
  display: flex;
  position: relative;
  background: #fff;
}
.modal-watchImg .modal-dialog {
  height: 100%;
}
.modal-watchImg .modal-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-watchImg .modal-close .bi {
  background: none;
}
.modal-watchImg .modal-body {
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: initial;
  transition: all 0.3s;
  scale: 0;
}
.modal-watchImg .modal-body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.modal-watchImg.show .modal-body {
  scale: 1;
}

@media (min-width: 992px) {
  .modal-watchImg .modal-close:hover .xd {
    fill: #fff;
  }
  .modal-watchImg .modal-close:hover .bg {
    fill: var(--mt-global-color-theme);
  }
}
@media (max-width: 991.98px) {
  .icon-close {
    width: 0.4rem;
    height: 0.4rem;
  }

  .modal-watchImg .modal-body {
    width: 6rem;
    height: 6rem;
  }
  .modal-watchImg .imgDom-wrap {
    max-width: 80%;
  }
  .modal-watchImg .modal-close {
    right: 0rem;
  }
  .modal-watchImg .modal-close svg {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.prodel-banner .item-img {
  position: absolute;
  bottom: 0;
  left: 0;
}
.prodel-banner .item-img img {
  width: 100%;
}
.prodel-banner .public-button.black > * {
  min-width: 8.7em;
  background: #222;
}
.prodel-banner .public-button.black > * span {
  font-weight: 700;
}
.prodel-banner .public-button.white > * {
  background: none;
  border: 1px solid #222;
}
.prodel-banner .public-button.white > * span {
  color: #222;
  font-weight: 700;
}
.prodel-banner .public-button.white > * i {
  background-color: #222;
}
.prodel-banner .public-button-list {
  display: flex;
  gap: 0 0.5em;
}
.prodel-banner .title-wrap {
  display: flex;
  align-items: center;
  gap: 0 0.65em;
  margin-bottom: 0.35rem;
}
.prodel-banner .pro-desc {
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 1.7rem;
}
.prodel-banner .pro-status {
  display: flex;
  align-items: center;
  gap: 0 0.3em;
}
.prodel-banner .pro-status .icon {
  width: 1em;
  height: 1em;
  background-size: contain;
  background-position: center;
}
.prodel-banner .pro-status .pro-status-txt {
  font-size: 0.8em;
  line-height: 1em;
  font-weight: 700;
}
.prodel-banner .pro-status.sale .pro-status-txt {
  color: #1D624A;
}
.prodel-banner .pro-status.sale .icon {
  background-image: url(/img-images-zs.svg.jpg);
}
.prodel-banner .rocket-title-xxl {
  line-height: 3.6rem;
  font-weight: 700;
}
.prodel-banner .inner-slide {
  position: relative;
}
.prodel-banner .iner-l {
  width: 11.3em;
  flex-shrink: 0;
}
.prodel-banner .inner-r {
  margin-top: 0.6em;
}
.prodel-banner .imgwrap {
  padding-top: 100%;
  position: relative;
  background: #F3F4F6;
  cursor: pointer;
}
.prodel-banner .imgwrap::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  background: url(/img-common-scale.svg.jpg) no-repeat;
  background-size: contain;
  opacity: 0.8;
  width: 26px;
  height: 26px;
}
.prodel-banner .imgwrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}
.prodel-banner .img-up {
  position: relative;
  padding: 4.6em 0 5.1em;
}
.prodel-banner .img-up::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: calc(100% - 4.84375vw);
  width: 100%;
  background: #F1F1F1;
}
.prodel-banner .img-up .rocket-content__inner {
  display: flex;
  gap: 0 2.6em;
}

.product-introduce {
  padding: 2.95em 0 0em 0;
}
.product-introduce .inner {
  padding: 0 0 0em 0;
}
.product-introduce .inner > *:last-child {
  margin-bottom: 0;
}
.product-introduce .rocket-title-xl {
  line-height: 3.6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.pro-feature-performance {
  font-size: 1.3em;
  line-height: 1.1538461538em;
  color: rgba(34, 34, 34, 0.6);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pro-desc-text {
  font-size: 0.9em;
  line-height: 1.6666666667em;
  margin-bottom: 1.65rem;
  max-width: 60.55rem;
}
.pro-desc-text p {
  margin-bottom: 1rem;
}
.pro-desc-text p:last-child {
  margin-bottom: 0;
}

.to-load-file {
  margin: 0 0 0 0.1em;
  color: #E00E1E;
}
.to-load-file a {
  display: flex;
  align-items: center;
  gap: 0 0.3em;
}
.to-load-file .icon {
  -webkit-mask: url(/img-common-download/black.svg.jpg) no-repeat center/contain;
  mask: url(/img-common-download/black.svg.jpg) no-repeat center/contain;
  background: currentColor;
  width: 1em;
  height: 1em;
}
.to-load-file .text {
  font-size: 0.8em;
  line-height: 2.25em;
  color: #E00E1E;
  font-weight: 700;
}

.product-feature {
  padding: 3em 0 0em 0;
}
.product-feature .rocket-title-xl {
  font-weight: 700;
  line-height: 3.6rem;
}

.product-feature-list {
  margin: -0.1em auto 0;
  width: 100%;
  max-width: 60.7rem;
  overflow: hidden;
}
.product-feature-list .item-img {
  width: 4em;
  height: 4em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  margin-bottom: 1.05em;
}
.product-feature-list .item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-feature-list .item-title {
  font-size: 1.3em;
  line-height: 1.1538461538em;
  font-weight: 700;
  margin-bottom: 0.6923076923em;
  text-align: center;
}
.product-feature-list .item-desc {
  font-size: 0.9em;
  line-height: 1.6666666667em;
  text-align: center;
}

.application-scope {
  padding: 2.85em 0;
  margin-top: 4.6rem;
  background: #E7EDFB;
  position: relative;
}
.application-scope.middle .inner-l {
  padding-bottom: 0;
}
.application-scope .inner {
  display: flex;
  align-items: center;
  gap: 0 4.0104166667vw;
}
.application-scope .desc {
  font-size: 0.9em;
  line-height: 1.6666666667em;
  margin-bottom: 2rem;
  padding-right: 6.6145833333vw;
}
.application-scope .inner-l {
  flex: 1;
  padding-left: 6.5104166667vw;
  padding-bottom: 1.71875vw;
}
.application-scope .inner-r {
  width: 36.9178082192%;
}
.application-scope .imgwrap {
  padding-top: 64.0074211503%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.application-scope .imgwrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.application-scope .rocket-title-xl {
  font-weight: 700;
  line-height: 2.4rem;
  margin-bottom: 1.15rem;
}
.application-scope .scope-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 1.6em;
}
.application-scope .scope-list-item {
  display: flex;
  gap: 0 0.65em;
}
.application-scope .scope-list-item .text {
  font-size: 0.8em;
  line-height: 1.625em;
  font-weight: 700;
}
.application-scope .scope-list-item .icon {
  background: url(/img-images-scop.svg.jpg) no-repeat;
  background-size: contain;
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
}

.pro-load-detail-item {
  padding: 1.5em 0 0 0;
  display: none;
}
.pro-load-detail-item:nth-child(1) {
  display: block;
}

.pro-load {
  padding: 5em 0 5em 0;
}
.pro-load .rocket-title-xl {
  font-weight: 700;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
.pro-load .inner {
  padding: 0 6.25vw;
}
.pro-load.isone .pro-load-menu {
  display: none;
}
.pro-load.isone .pro-load-detail-item {
  padding-top: 0;
}

.pro-load-menu {
  display: flex;
  gap: 0 0.5em;
  border-bottom: 1px solid #222;
}
.pro-load-menu .current a {
  background: #E00E1E;
}
.pro-load-menu .current .text {
  color: #fff;
  font-weight: 700;
}
.pro-load-menu a {
  display: flex;
  padding: 0.7em 0.95em;
  border: 1px solid #222;
  border-bottom: 0;
  background: #F1F1F1;
}
.pro-load-menu .text {
  font-size: 0.9em;
  line-height: 1.3333333333em;
}

.file-list-item {
  border: 1px solid #DBDBDB;
  padding: 1.3em 1.5em 1.6em 1.5em;
  display: flex;
  gap: 0 1.15em;
  margin-bottom: 0.5em;
  align-items: center;
}
.file-list-item:last-child {
  margin-bottom: 0;
}
.file-list-item .to-load-file {
  margin-left: 0;
}
.file-list-item .to-load-file a {
  gap: 0 0.25rem;
}
.file-list-item .to-load-file .text {
  line-height: 1.6rem;
}
.file-list-item .is-l {
  width: 2.15em;
  flex-shrink: 0;
  display: flex;
}
.file-list-item .is-r {
  flex: 1;
}
.file-list-item .item-tag-list {
  display: flex;
  gap: 0 1.1rem;
}
.file-list-item .item-tag-item {
  font-size: 0.8em;
  line-height: 1.75em;
  color: #000;
  font-weight: 400;
  position: relative;
}
.file-list-item .item-tag-item::after {
  position: absolute;
  content: '';
  width: 0.05rem;
  height: 0.75rem;
  background: #222;
  top: 50%;
  transform: translateY(-50%);
  right: -0.55rem;
}
.file-list-item .item-tag-item:last-child::after {
  opacity: 0;
}
.file-list-item .item-tag {
  display: flex;
  align-items: center;
  margin-bottom: 0.9em;
}
.file-list-item .prefix {
  font-size: 0.8em;
  line-height: 1.75em;
  font-weight: 700;
}
.file-list-item .item-title {
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.file-list-item.pdf .is-l .icon {
  background: url(/img-images-pdf.svg.jpg) no-repeat;
  background-size: contain;
  width: 2.15em;
  height: 2.15em;
}

.prodel-foot.custom-widget_footConsult {
  background: url(/img-common-footconsult/bg.webp.jpg) no-repeat center top;
  background-size: 100% auto;
  padding: 7.2em 0 4.75em 0;
}
.prodel-foot .custom-footConsult-block {
  padding: 0 3.6458333333vw 0 5.78125vw;
}
.prodel-foot .footConsult-handle {
  margin: 1.8rem 0 0 2.1rem;
}
.prodel-foot .footConsult-handle .xipm-btn {
  width: auto;
  padding: 0 1.1rem 0 1.1rem;
  min-width: 6rem;
}
.prodel-foot .footConsult-handle .xipm-btn-fill-black {
  background: none;
  color: #222;
}

.custom-widget_footConsult-wrap {
  padding-top: 1em;
}
.custom-widget_footConsult-wrap .prodel-foot {
  margin-top: 0;
}

.prodel-lastbox {
  background: #F6F8FB;
}
.prodel-lastbox.hasmt92 {
  margin-top: 4.6rem;
}

@media (min-width: 992px) {
  .to-load-file:hover {
    color: #AA000D;
  }
  .to-load-file:hover .text {
    color: #AA000D;
  }

  .prodel-banner .public-button.black > *:hover {
    background: none;
    border: 1px solid #E00E1E;
  }
  .prodel-banner .public-button.black > *:hover span {
    color: #E00E1E;
  }
  .prodel-banner .public-button.black > *:hover .icon {
    background-color: #E00E1E;
  }
  .prodel-banner .public-button.white > *:hover {
    border: 1px solid #E00E1E;
  }
  .prodel-banner .public-button.white > *:hover span {
    color: #E00E1E;
  }
  .prodel-banner .public-button.white > *:hover .icon {
    background-color: #E00E1E;
  }

  .prodel-foot .footConsult-handle .xipm-btn-fill-black:hover {
    border: 1px solid #E00E1E;
    color: #E00E1E;
  }
}
@media (max-width: 991.98px) {
  .prodel-lastbox.hasmt92 {
    margin-top: 1.2rem;
  }

  .prodel-banner .iner-l {
    margin-left: auto;
    margin-right: auto;
    width: 3.25rem;
  }
  .prodel-banner .inner-r {
    margin-top: 0;
  }
  .prodel-banner .public-button-list {
    gap: 0 0.2rem;
  }
  .prodel-banner .public-button.black > * {
    min-width: 3.5rem;
    min-height: 0.84rem;
  }
  .prodel-banner .public-button.white > * {
    min-width: 2.8rem;
    min-height: 0.84rem;
  }
  .prodel-banner .pro-desc {
    font-size: 0.34rem;
    line-height: 0.48rem;
    margin-bottom: 0.78rem;
  }
  .prodel-banner .rocket-title-xxl {
    line-height: 0.68rem;
  }
  .prodel-banner .title-wrap {
    gap: 0 0.24rem;
    margin-bottom: 0.26rem;
  }
  .prodel-banner .pro-status {
    gap: 0 0.12rem;
  }
  .prodel-banner .pro-status .icon {
    width: 0.34rem;
    height: 0.34rem;
  }
  .prodel-banner .pro-status .pro-status-txt {
    font-size: 0.28rem;
    line-height: 0.28rem;
  }
  .prodel-banner .img-up {
    padding: 1.23rem 0 1.91rem;
  }
  .prodel-banner .img-up::before {
    height: calc(100% - 1.48rem);
  }
  .prodel-banner .img-up .rocket-content__inner {
    flex-direction: column;
    gap: 0.29rem 0;
  }

  .product-introduce {
    padding: 1rem 0 0 0;
  }
  .product-introduce .rocket-title-xl {
    line-height: 0.62rem;
    margin-bottom: 0.5rem;
  }
  .product-introduce .inner {
    padding-bottom: 0rem;
    border-bottom: 0rem solid #E9E9EA;
  }

  .pro-feature-performance {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.25rem;
  }

  .pro-desc-text {
    font-size: 0.3rem;
    line-height: 0.46rem;
    margin-bottom: 0.5rem;
    max-width: 100%;
  }

  .to-load-file {
    margin-left: 0;
  }
  .to-load-file a {
    gap: 0 0.12rem;
  }
  .to-load-file .text {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .to-load-file .icon {
    width: 0.34rem;
    height: 0.34rem;
  }

  .product-feature {
    padding: 1.2rem 0 0rem;
  }
  .product-feature .rocket-title-xl {
    line-height: 0.62rem;
    margin-bottom: 0.6rem;
  }

  .product-feature-list {
    margin-top: 0em;
    max-width: none;
  }
  .product-feature-list .item-img {
    width: 1.3rem;
    height: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .product-feature-list .item-title {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.16rem;
  }
  .product-feature-list .item-desc {
    font-size: 0.3rem;
    line-height: 0.46rem;
    max-width: 5.62rem;
    margin-left: auto;
    margin-right: auto;
  }

  .application-scope {
    padding: 1.2rem 0 1.2rem;
    margin-top: 1.2rem;
  }
  .application-scope .scope-list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0.54rem;
    grid-row-gap: 0.4rem;
  }
  .application-scope .inner-r {
    width: 100%;
  }
  .application-scope .scope-list-item {
    gap: 0 0.18rem;
  }
  .application-scope .scope-list-item .icon {
    width: 0.38rem;
    height: 0.38rem;
  }
  .application-scope .scope-list-item .text {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .application-scope::after {
    opacity: 0;
    pointer-events: none;
  }
  .application-scope .inner-l {
    padding-left: 0;
  }
  .application-scope .inner {
    flex-direction: column;
    gap: 0.53rem 0;
  }
  .application-scope .desc {
    font-size: 0.3rem;
    line-height: 0.46rem;
    margin-bottom: 0.52rem;
    padding-right: 0;
  }
  .application-scope .rocket-title-xl {
    line-height: 0.62rem;
    margin-bottom: 0.15rem;
  }

  .pro-load {
    padding: 1.2rem 0 1.2rem;
  }
  .pro-load .inner {
    padding: 0;
  }
  .pro-load .rocket-title-xl {
    line-height: 0.62rem;
    margin-bottom: 0.4rem;
  }

  .pro-load-menu {
    display: none;
  }

  .header-detail-wrap {
    position: relative;
  }
  .header-detail-wrap .is-title {
    font-size: 0.3rem;
    line-height: 0.46rem;
    padding: 0.19rem 0.6rem 0.19rem 0.23rem;
    font-weight: 700;
    background: #F1F1F1;
  }
  .header-detail-wrap .more-click {
    position: absolute;
    right: 0rem;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    z-index: 2;
  }
  .header-detail-wrap .more-click .icon {
    background: url(/img-images-lozp.svg.jpg) no-repeat;
    background-size: contain;
    width: 0.31rem;
    height: 0.18rem;
    margin-right: 0.27rem;
    transition: all 0.3s;
    transform: rotate(-180deg);
  }

  .pro-load-detail-item {
    display: block;
    margin-bottom: 0.2rem;
    padding: 0;
  }
  .pro-load-detail-item.cur .more-click .icon {
    transform: rotate(0deg);
  }
  .pro-load-detail-item:last-child {
    margin-bottom: 0;
  }

  .file-list {
    display: none;
  }

  .file-list {
    padding: 0.3rem 0 0 0;
  }

  .file-list-item {
    padding: 0.5rem;
  }
  .file-list-item .item-tag {
    margin-bottom: 0;
  }
  .file-list-item .item-tag-list {
    gap: 0 0.6rem;
  }
  .file-list-item .to-load-file {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.3rem;
  }
  .file-list-item .to-load-file a {
    gap: 0 0.12rem;
  }
  .file-list-item .to-load-file .icon {
    width: 0.25rem;
    height: 0.25rem;
  }
  .file-list-item .to-load-file .text {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .file-list-item .item-tag-item {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .file-list-item .item-tag-item::after {
    width: 0.015rem;
    height: 0.3rem;
    right: -0.3rem;
  }
  .file-list-item .prefix {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .file-list-item .item-title {
    font-size: 0.34rem;
    line-height: 0.48rem;
    margin-bottom: 0.2rem;
  }
  .file-list-item .is-l {
    display: none;
  }

  .prodel-foot.custom-widget_footConsult {
    background-image: url(/img-common-footconsult/bg_m.webp.jpg);
    padding: 1.4rem 0 1.36rem;
  }
  .prodel-foot.custom-widget_footConsult .custom-footConsult-block {
    padding: 0;
  }
  .prodel-foot.custom-widget_footConsult .footConsult-handle {
    margin: 0.8rem 0 0 0;
  }
  .prodel-foot.custom-widget_footConsult .footConsult-handle .xipm-btn.xipm-btn-fill-red {
    min-width: 3.5rem;
    font-size: 0.28rem;
    line-height: 1em;
    padding: 0;
  }
  .prodel-foot.custom-widget_footConsult .footConsult-handle .xipm-btn.xipm-btn-fill-black {
    min-width: 2.8rem;
    font-size: 0.28rem;
    line-height: 1em;
    padding: 0;
  }

  .custom-widget_footConsult-wrap {
    padding-top: 0rem;
  }
  .custom-widget_footConsult-wrap .custom-widget_footConsult {
    margin-top: 0;
  }
}
.pro-parameter {
  padding: 3em 0 0 0;
}
.pro-parameter .rocket-title-xl {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pro-parameter-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 2rem;
}
.pro-parameter-list .simulate-tr {
  display: flex;
}
.pro-parameter-list .simulate-tr .simulate-td {
  flex: 1;
  font-size: 0.8rem;
  line-height: 1.3rem;
}
.pro-parameter-list .simulate-tr .simulate-td:nth-child(1) {
  width: 29.5774647887%;
  flex: none;
}
.pro-parameter-list .list-item {
  border-bottom: 1px solid #D3D9E5;
  padding: 0.8rem 0 0.25rem 0;
}

@media (max-width: 991.98px) {
  .pro-parameter {
    padding: 1.2rem 0 0 0;
  }
  .pro-parameter .rocket-title-xl {
    margin-bottom: 0.27rem;
  }

  .pro-parameter-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0 0;
  }
  .pro-parameter-list .list-item {
    padding: 0.3rem 0 0.3rem;
  }
  .pro-parameter-list .simulate-tr .simulate-td {
    flex: 1;
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .pro-parameter-list .simulate-tr .simulate-td:nth-child(1) {
    width: 50%;
    flex: none;
  }
}
/* 自定义样式-产品更改通知 */
.certification {
  padding: 3.5em 0 0 0;
}
.certification .inner {
  display: flex;
  align-items: center;
  gap: 0 2.6041666667vw;
  padding-bottom: 3.5em;
  border-bottom: 1px solid #DBE7F0;
}
.certification .desc {
  font-size: 1.3em;
  line-height: 1.5384615385em;
  font-weight: 700;
}
.certification .desc span, .certification .desc strong {
  color: #E00E1E;
}

.certification-img-list {
  display: flex;
  align-items: center;
  gap: 0 1em;
}
.certification-img-list .item {
  border: 5px solid #EDF1F3;
  border-radius: 8px;
  width: 14.5833333333vw;
}
.certification-img-list .item img {
  width: 100%;
}

.news-pro {
  padding: 3em 0 3rem 0;
}
.news-pro .rocket-title-xl {
  font-weight: 700;
  line-height: 2.4rem;
  margin-bottom: 1.6rem;
}

.simulation-table-wrap .simulation-tr {
  width: 100%;
  display: flex;
}
.simulation-table-wrap .simulation-td:nth-child(1) {
  width: 79.4520547945%;
  position: relative;
}
.simulation-table-wrap .simulation-td:nth-child(1)::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #C5C5C5;
}
.simulation-table-wrap .simulation-td:nth-child(2) {
  flex: 1;
}
.simulation-table-wrap .simulation-thead {
  background: #F0F0F0;
}
.simulation-table-wrap .simulation-thead .simulation-td {
  display: flex;
  padding: 1.2em 0 1.2em 0.9em;
}
.simulation-table-wrap .simulation-thead .simulation-td span {
  font-size: 0.8em;
  font-weight: 700;
}
.simulation-table-wrap .simulation-tbody .simulation-tr {
  border-bottom: 1px solid #E5E5E5;
}
.simulation-table-wrap .simulation-tbody .simulation-tr .simulation-td:nth-child(1) {
  padding: 1.4em 0 1.6em 1.15em;
}
.simulation-table-wrap .simulation-tbody .simulation-tr .simulation-td:nth-child(2) {
  padding: 1.85em 0 0em 0.95em;
}
.simulation-table-wrap .simulation-tbody .simulation-tr:nth-child(even) {
  background: #FAFAFA;
}
.simulation-table-wrap .time {
  font-size: 0.8em;
  line-height: 1em;
  color: #000;
  font-weight: 700;
}

.pro-inner-box {
  display: flex;
  align-items: center;
  gap: 0 0.95em;
}
.pro-inner-box .item-title {
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.pro-inner-box .item-desc {
  font-size: 0.8em;
  line-height: 1.625em;
  color: #000;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.pro-inner-box .item-img {
  width: 3.9em;
  height: 3.9em;
}
.pro-inner-box .item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.to-load-file02 a {
  display: flex;
  gap: 0 0.25em;
  align-items: center;
}
.to-load-file02 .icon {
  mask: url(/img-images-load01.svg.jpg) no-repeat center/contain;
  -webkit-mask: url(/img-images-load01.svg.jpg) no-repeat center/contain;
  background-color: #E00E1E;
  width: 0.95em;
  height: 0.95em;
}
.to-load-file02 .text {
  font-size: 0.8em;
  line-height: 2em;
  color: #E00E1E;
  font-weight: 700;
}

.news-pro-message {
  padding: 3.9em 0 5em 0;
}
.news-pro-message .rocket-title-xl {
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.simulation-table-wrap02 {
  padding-right: 4px;
}
.simulation-table-wrap02 .simulation-tr {
  display: flex;
}
.simulation-table-wrap02 .simulation-td:nth-child(1) {
  width: 20%;
  position: relative;
}
.simulation-table-wrap02 .simulation-td:nth-child(1)::after {
  position: absolute;
  content: '';
  right: 0;
  width: 1px;
  height: 100%;
  background: #C5C5C5;
  top: 0;
}
.simulation-table-wrap02 .simulation-td:nth-child(2) {
  width: 19.8630136986%;
}
.simulation-table-wrap02 .simulation-td:nth-child(3) {
  width: 19.8630136986%;
}
.simulation-table-wrap02 .simulation-td:nth-child(4) {
  width: 19.8630136986%;
}
.simulation-table-wrap02 .simulation-td:nth-child(5) {
  flex: 1;
}
.simulation-table-wrap02 .simulation-thead {
  background: #F0F0F0;
}
.simulation-table-wrap02 .simulation-thead .simulation-td {
  padding: 1.2em 1em;
  display: flex;
}
.simulation-table-wrap02 .simulation-thead .simulation-td span {
  font-size: 0.8em;
  font-weight: 700;
}
.simulation-table-wrap02 .simulation-tbody .simulation-tr {
  border-bottom: 1px solid #E5E5E5;
}
.simulation-table-wrap02 .simulation-tbody .simulation-tr:nth-child(even) {
  background: #FAFAFA;
}
.simulation-table-wrap02 .simulation-tbody .simulation-td {
  display: flex;
  padding: 0.95em 1em;
}
.simulation-table-wrap02 .simulation-tbody .simulation-td span {
  font-size: 0.8em;
  line-height: 1.625em;
  font-weight: 700;
}

@media (min-width: 992px) {
  .pro-inner-box .item-title:hover {
    color: #AA000D;
  }

  .to-load-file02 a:hover i {
    background-color: #AA000D;
  }
  .to-load-file02 a:hover span {
    color: #AA000D;
  }
}
@media (max-width: 991.98px) {
  .certification {
    padding: 1rem 0 0rem;
  }
  .certification .desc {
    font-size: 0.4rem;
    line-height: 0.52rem;
    text-align: center;
    width: 6.16rem;
    margin-left: auto;
    margin-right: auto;
  }
  .certification .desc p {
    display: contents;
  }
  .certification .inner {
    gap: 0.4rem 0;
    flex-direction: column;
    padding-bottom: 1rem;
  }
  .certification .inner-l {
    width: 100%;
  }

  .certification-img-list {
    gap: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 0.22rem;
  }
  .certification-img-list .item {
    width: auto;
    border-radius: 0.08rem;
    border: 0.05rem solid #EDF1F3;
  }

  .news-pro {
    padding: 1rem 0 0 0;
    overflow: hidden;
  }
  .news-pro.hide-pop .rocket-content__inner::after {
    opacity: 0;
    pointer-events: none;
  }
  .news-pro .rocket-title-xl {
    line-height: 0.62rem;
    margin-bottom: 0.3rem;
  }
  .news-pro .rocket-content__inner::after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 1.37rem;
    height: 100%;
    background: linear-gradient(94deg, rgba(255, 255, 255, 0) -25.01%, #FFF 84.44%);
    z-index: 2;
  }

  .simulation-table-wrap {
    position: relative;
  }
  .simulation-table-wrap .time {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .simulation-table-wrap .simulation-td:nth-child(1) {
    width: 11.48rem;
  }
  .simulation-table-wrap .simulation-td:nth-child(2) {
    width: 4rem;
  }
  .simulation-table-wrap .simulation-tbody .simulation-tr {
    border-bottom: 0;
  }
  .simulation-table-wrap .simulation-tbody .simulation-tr .simulation-td:nth-child(1) {
    padding: 0.27rem 0.25rem 0.39rem 0.25rem;
  }
  .simulation-table-wrap .simulation-tbody .simulation-tr .simulation-td:nth-child(2) {
    padding: 0.5rem 0.25rem 0.39rem 0.25rem;
  }
  .simulation-table-wrap .simulation-thead .simulation-td {
    padding: 0.22rem 0.23rem;
  }
  .simulation-table-wrap .simulation-thead .simulation-td span {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }

  .need-scroll-swiper .swiper-slide {
    width: auto;
  }

  .pro-inner-box {
    gap: 0 0.31rem;
    align-items: flex-start;
  }
  .pro-inner-box .inner-r {
    margin-top: 0.12rem;
  }
  .pro-inner-box .item-title {
    font-size: 0.34rem;
    line-height: 0.46rem;
    margin-bottom: 0.1rem;
  }
  .pro-inner-box .item-desc {
    font-size: 0.28rem;
    line-height: 0.4rem;
    margin-bottom: 0.45rem;
  }
  .pro-inner-box .item-img {
    width: 1.46rem;
    height: 1.46rem;
  }

  .to-load-file02 .text {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .to-load-file02 .icon {
    width: 0.26rem;
    height: 0.26rem;
  }
  .to-load-file02 a {
    gap: 0 0.12rem;
  }

  .news-pro-message {
    padding: 1.2rem 0 1.4rem;
    overflow: hidden;
  }
  .news-pro-message .rocket-title-xl {
    line-height: 0.62rem;
    margin-bottom: 0.3rem;
  }

  .simulation-table-wrap02 .simulation-thead .simulation-td {
    padding: 0.15rem 0.2rem;
  }
  .simulation-table-wrap02 .simulation-thead .simulation-td span {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .simulation-table-wrap02 .simulation-tbody .simulation-td {
    padding: 0.35rem 0.2rem;
  }
  .simulation-table-wrap02 .simulation-tbody .simulation-td span {
    font-size: 0.28rem;
    line-height: 0.3rem;
    font-weight: normal;
  }
  .simulation-table-wrap02 .simulation-tbody .to-load-file02 span {
    font-weight: bold;
  }
  .simulation-table-wrap02 .simulation-td:nth-child(1), .simulation-table-wrap02 .simulation-td:nth-child(2), .simulation-table-wrap02 .simulation-td:nth-child(3), .simulation-table-wrap02 .simulation-td:nth-child(4), .simulation-table-wrap02 .simulation-td:nth-child(5) {
    width: 2.92rem;
  }

  .need-scroll-swiper .is-pagination {
    margin-top: 0.4rem;
    width: 100%;
    height: 0.06rem;
  }
  .need-scroll-swiper .is-pagination .pross {
    height: 100%;
    background: #E00E1E;
    transition: all 0.2s;
  }
}
/* 自定义样式-产品频道 */
.dynamic-widget_toLinkNews-box {
  padding: 7.3em 0 0 0;
  background: #FAFAFA;
}

.public-banner-h652 .public-banner .inner-slide {
  position: relative;
}
.public-banner-h652 .public-banner .img-up-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.public-banner-h652 .public-banner .global-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2.7604166667vw;
}
.public-banner-h652 .public-banner .title {
  font-size: 3em;
  line-height: 1.2em;
  margin-bottom: 0.75rem;
  color: #fff;
  font-weight: 700;
}
.public-banner-h652 .public-banner .desc {
  font-size: 1em;
  line-height: 1.5em;
  color: #fff;
}
.public-banner-h652 .public-banner .imgwrap {
  height: 33.9583333333vw;
}
.public-banner-h652 .public-banner .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-product .public-banner .imgwrap {
  background: #fafafa;
}

.pro_enter.dynamic-widget_recommend {
  background: #fafafa;
  padding: 4.5em 0 0 0;
  opacity: 0;
}
.pro_enter.dynamic-widget_recommend .item-title {
  font-size: 1.6em;
  line-height: 1.125em;
  margin-bottom: 0.65rem;
}

.product-feature-d {
  padding: 7.3em 0 1.7em;
  background: #FAFAFA;
}
.product-feature-d .inner {
  display: flex;
  align-items: flex-start;
  gap: 0 3.75em;
}
.product-feature-d .inner-l {
  flex: 1;
  padding-left: 2.15em;
}
.product-feature-d .rocket-title-xxl {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.product-feature-d .rocket-title-xxl span {
  color: #E00E1E;
}
.product-feature-d .desc {
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 2.8rem;
}
.product-feature-d .inner-r {
  width: 50%;
  position: sticky;
  top: 6em;
  margin-top: 7.1em;
}
.product-feature-d .inner-r .imgwrap {
  padding-top: 66.2591687042%;
  height: 0;
  width: 100%;
  position: relative;
}
.product-feature-d .inner-r .imgwrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pro-feature-list .item-list {
  display: flex;
  gap: 0 0.8em;
  margin-bottom: 1.6rem;
}
.pro-feature-list .item-list:last-child {
  margin-bottom: 0;
}
.pro-feature-list .rocket-title-md {
  font-size: 1.3em;
  line-height: 1.8461538462em;
  font-weight: bold;
  margin-bottom: 0.05rem;
}
.pro-feature-list .is-l {
  width: 2.5em;
  margin-top: -0.1em;
}
.pro-feature-list .is-l .imgwrap {
  width: 2.5em;
  height: 2.5em;
}
.pro-feature-list .is-l .imgwrap img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}
.pro-feature-list .is-r {
  flex: 1;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1.7em;
}

.application-into .inner-item {
  display: flex;
  gap: 0 5.25em;
}
.application-into .imgwrap {
  position: relative;
  padding-top: 60.4580152672%;
  height: 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.application-into .imgwrap a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.application-into .imgwrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.application-into .desc-18-30 {
  font-size: 0.9em;
  line-height: 1.6666666667em;
}
.application-into .rocket-title-lg {
  display: flex;
  margin-bottom: 1rem;
  font-weight: 700;
}
.application-into .rocket-title-lg a {
  line-height: 2.4rem;
}
.application-into .inner-l {
  width: 44.8630136986%;
}
.application-into .inner-r {
  flex: 1;
  padding: 2.4em 2.5em 0 0;
}
.application-into .public-button-wrap {
  display: flex;
  margin-top: 2.2em;
}
.application-into .public-button > * {
  min-width: 8em;
}
.application-into .public-button > * span {
  font-size: 0.8rem;
  line-height: 1.2rem;
  font-weight: 700;
}
.application-into .list-item {
  margin-bottom: 2.7em;
}
.application-into .list-item:last-child {
  margin-bottom: 0;
}
.application-into .list-item:nth-child(even) .inner-item {
  flex-direction: row-reverse;
  gap: 0 7.7em;
}
.application-into .list-item:nth-child(even) .inner-r {
  padding: 3em 0 0 0;
}

.application-area {
  padding: 5em 0 0em;
}
.application-area .desc {
  font-size: 1em;
  line-height: 1.5em;
  color: #000;
  margin-bottom: 2.8rem;
}
.application-area .rocket-title-xxl {
  font-weight: 700;
  line-height: 2.7rem;
  margin-bottom: 1rem;
}
.application-area .rocket-title-xxl span {
  color: #E00E1E;
}

@media (max-width: 991.98px) {
  .dynamic-widget_toLinkNews-box {
    padding: 1.4rem 0 0 0;
  }

  .public-banner-h652 .public-banner .global-inner {
    padding-top: 0.28rem !important;
  }
  .public-banner-h652 .public-banner .title {
    font-size: 0.7rem;
    line-height: 0.92rem;
    margin-bottom: 0.2rem;
  }
  .public-banner-h652 .public-banner .desc {
    font-size: 0.34rem;
    line-height: 0.48rem;
  }
  .public-banner-h652 .public-banner .imgwrap {
    height: 9.88rem;
  }

  .pro_enter.dynamic-widget_recommend {
    padding: 1rem 0 0rem;
  }
  .pro_enter.dynamic-widget_recommend .dynamic-recom-swiper .item-title {
    font-size: 0.5rem;
    line-height: 0.62rem;
    margin-bottom: 0.1rem;
  }
  .pro_enter.dynamic-widget_recommend .dynamic-recom-swiper .inner-slide {
    padding: 0.3rem 0.3rem 0.55rem 0.3rem;
    gap: 0.32rem 0;
  }
  .pro_enter.dynamic-widget_recommend .item-title {
    font-size: 1.6em;
    line-height: 1.125em;
    margin-bottom: 0.65rem;
  }

  .product-feature-d {
    padding: 1.39rem 0 0rem;
    overflow: hidden;
  }
  .product-feature-d .inner-r {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 0;
  }
  .product-feature-d .inner-r .imgwrap {
    margin: 0 -0.5rem;
    width: auto;
    padding-top: 0;
    height: 5.51rem;
  }
  .product-feature-d .desc {
    font-size: 0.34rem;
    line-height: 0.56rem;
    margin-bottom: 0.74rem;
  }
  .product-feature-d .rocket-title-xxl {
    margin-bottom: 0.22rem;
  }
  .product-feature-d .inner {
    flex-direction: column;
    gap: 1rem 0;
  }
  .product-feature-d .inner-l {
    padding-left: 0;
  }

  .pro-feature-list .rocket-title-md {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.15rem;
  }
  .pro-feature-list .is-r {
    padding-bottom: 0.4rem;
  }
  .pro-feature-list .is-l {
    margin-top: -0.04rem;
    width: 0.6rem;
  }
  .pro-feature-list .is-l .imgwrap {
    width: 0.6rem;
    height: 0.6rem;
  }
  .pro-feature-list .item-list {
    gap: 0 0.2rem;
    margin-bottom: 0.4rem;
  }

  .application-area {
    padding: 1.2rem 0 0rem;
  }
  .application-area .rocket-title-xxl {
    font-size: 0.54rem;
    line-height: 0.68rem;
    margin-bottom: 0.22rem;
  }
  .application-area .desc {
    font-size: 0.34rem;
    line-height: 0.56rem;
    margin-bottom: 0.43rem;
    color: #222;
  }

  .application-into .public-button > * {
    min-width: 2.7rem;
    height: 0.8rem;
  }
  .application-into .public-button > * span {
    font-size: 0.28rem;
    line-height: 0.3rem;
  }
  .application-into .list-item {
    margin-bottom: 1rem;
  }
  .application-into .list-item:nth-child(even) .inner-item {
    gap: 0 0;
    flex-direction: column;
  }
  .application-into .list-item:nth-child(even) .inner-r {
    padding: 0.4rem 0 0 0;
  }
  .application-into .desc-18-30 {
    font-size: 0.34rem;
    line-height: 0.56rem;
  }
  .application-into .public-button-wrap {
    margin-top: 0.4rem;
  }
  .application-into .rocket-title-lg {
    margin-bottom: 0.21rem;
    font-size: 0.4rem;
  }
  .application-into .rocket-title-lg a {
    line-height: 0.52rem;
  }
  .application-into .inner-r {
    padding: 0.4rem 0 0 0;
  }
  .application-into .inner-l {
    width: 100%;
  }
  .application-into .inner-item {
    flex-direction: column;
    gap: 0 0;
  }
}
/* 自定义样式-应用频道 */
.paplt-st-header {
  margin-bottom: 2rem;
}
.paplt-st-header .st-heading {
  font-weight: bold;
}
.paplt-st-header .st-heading .red {
  color: var(--mt-global-color-red);
}
.paplt-st-header .st-text {
  margin: 3px 0 0;
}

.paplt-st-apbox {
  padding: 4.5rem 0 0rem;
  position: relative;
}
.paplt-st-apbox .paplt-st-header {
  margin-bottom: 3rem;
}
.paplt-st-apbox .paplt-st-header .st-text {
  margin: 1.6rem 0 0;
}

.paplt-aplist {
  width: 100%;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.paplt-apitem {
  height: 20.65rem;
  overflow: hidden;
  position: relative;
}
.paplt-apitem .item-box {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.paplt-apitem .item-imgs {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.paplt-apitem .item-imgs::after {
  content: '';
  display: block;
  background-image: url(/img-images-mask_grad.png.jpg);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.paplt-apitem .imgs {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  z-index: 1;
}
.paplt-apitem .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.paplt-apitem .item-body {
  width: 100%;
  padding: 1.5rem;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.paplt-apitem .item-title {
  font-weight: bold;
}
.paplt-apitem .item-desc {
  margin-top: 4px;
}
.paplt-apitem .item-bot {
  margin-top: 1.1rem;
}
.paplt-apitem .xipm-more {
  color: inherit;
}
.paplt-apitem .xipm-more .bi {
  color: var(--mt-global-color-red);
}

.paplt-mult-sect {
  overflow: hidden;
  position: relative;
}
.paplt-mult-sect .paplt-sect:not(:last-child) {
  border-bottom: solid 1px #E9E9EA;
}
.paplt-mult-sect .paplt-sect:last-child {
  padding-bottom: 3.25rem;
}

.paplt-st-design {
  padding: 4.5rem 0 2.2rem;
}

.paplt-download-swiper {
  overflow: hidden;
  padding: 10px;
  margin: -10px;
}
.paplt-download-swiper .slide-box {
  width: 100%;
  height: 9.1rem;
  overflow: hidden;
  display: block;
  background-color: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  padding: 1.6rem 1.5rem 1.2rem;
}
.paplt-download-swiper .slide-type {
  font-size: 0.8rem;
  line-height: 1em;
  height: 1em;
  color: #000;
  margin-bottom: 0.7rem;
}
.paplt-download-swiper .slide-title {
  font-size: 1rem;
  line-height: 1.5em;
  color: #000;
  font-weight: bold;
  height: calc(1.5em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.paplt-download-swiper .slide-bot {
  display: flex;
  justify-content: flex-end;
  margin: 0.2rem 0 0;
}

.paplt-st-video {
  padding: 3.6rem 0 0;
}

.paplt-video-swiper {
  overflow: hidden;
  position: relative;
  padding: 10px;
  margin: -10px;
}
.paplt-video-swiper .swiper-slide {
  width: calc((100% - 20px * 3) / 4);
}
.paplt-video-swiper .slide-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  border: solid 1px #E3E3E3;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}
.paplt-video-swiper .slide-imgs {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.paplt-video-swiper .imgs {
  width: 100%;
  padding: 59.48% 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.paplt-video-swiper .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.paplt-video-swiper .icon-play {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  background: url("/img-images-bf.svg.jpg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 10;
}
.paplt-video-swiper .slide-body {
  height: 9.1rem;
  background-color: #fff;
  padding: 1.5rem;
}
.paplt-video-swiper .slide-title {
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: bold;
  color: #000;
  height: calc(1.5em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0 0rem 0 0;
}
.paplt-video-swiper .slide-desc {
  font-size: 0.8rem;
  line-height: 1.3rem;
  color: rgba(34, 34, 34, 0.7);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(1.3rem * 2);
  margin: 0.5rem 0 0;
}

.paplt-lastbox {
  background-color: #F6F8FB;
  position: relative;
  z-index: 15;
}

@media (min-width: 992px) {
  .p-application .inside-body {
    padding: 1.8rem 0 0;
  }
  .p-application .inside-body::after {
    top: 52.95rem;
  }

  .paplt-st-header .rocket-title-xl {
    line-height: 3.6rem;
  }

  .paplt-apitem .imgs {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .paplt-apitem .item-body {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transform: translateY(1.75rem);
    -webkit-transform: translateY(1.75rem);
  }
  .paplt-apitem .item-bot {
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .paplt-apitem:nth-child(7n+1) {
    grid-column: 1 / 3;
  }
  .paplt-apitem:nth-child(7n+7) {
    grid-column: 2 / 4;
  }
  .paplt-apitem:hover .item-imgs::after {
    opacity: 0.5;
  }
  .paplt-apitem:hover .imgs {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  .paplt-apitem:hover .item-body {
    transform: none;
    -webkit-transform: none;
  }
  .paplt-apitem:hover .item-bot {
    opacity: 1;
  }

  .paplt-st-design .paplt-download-paging {
    margin: 0;
  }

  .paplt-download-swiper {
    margin: -10px -10px calc(2rem - 10px);
  }
  .paplt-download-swiper .swiper-slide {
    width: calc((100% - 20px * 3) / 4);
  }
  .paplt-download-swiper .swiper-slide:hover .slide-title {
    color: var(--mt-global-color-red);
  }

  .paplt-video-swiper .swiper-slide:hover .imgs img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
}
.p-application .custom-widget_footConsult {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .p-application .paplt-apitem .item-body {
    padding: 0.2rem 0.08rem 0 0.08rem;
    background: #fff;
  }
  .p-application .paplt-st-apbox {
    padding-bottom: 0;
  }
  .p-application .paplt-aplist {
    grid-gap: 0.6rem 0.2rem;
  }

  .paplt-st-header {
    margin-bottom: 0.4rem;
  }
  .paplt-st-header .st-text {
    margin: 0.2rem 0 0;
  }

  .paplt-st-apbox {
    padding: 1.1rem 0 1.2rem;
  }
  .paplt-st-apbox .paplt-st-header {
    margin-bottom: 0.86rem;
  }
  .paplt-st-apbox .paplt-st-header .st-text {
    margin-top: 0.32rem;
  }

  .paplt-aplist {
    grid-gap: 0.32rem 0.2rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .paplt-apitem {
    height: auto;
  }
  .paplt-apitem .item-imgs {
    height: 1.9rem;
  }
  .paplt-apitem .item-body {
    position: static;
    background-color: #F5F5F5;
    padding: 0.32rem 0.2rem 0.38rem;
    color: var(--mt-global-color-black);
  }
  .paplt-apitem .item-desc, .paplt-apitem .item-bot {
    display: none;
  }

  .paplt-mult-sect {
    margin-top: 0.44rem;
  }
  .paplt-mult-sect .paplt-sect:last-child {
    padding-bottom: 1.6rem;
  }

  .paplt-st-design {
    padding: 1rem 0 1rem;
  }

  .paplt-download-swiper {
    padding: 0;
    margin: 0;
    overflow: visible;
  }
  .paplt-download-swiper .swiper-slide {
    height: auto;
  }
  .paplt-download-swiper .slide-box {
    height: 100%;
    min-height: 2.6rem;
    box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 0.52rem 0.5rem 0.5rem;
  }
  .paplt-download-swiper .slide-type {
    font-size: 0.28rem;
    line-height: 0.3rem;
    height: 0.3rem;
    margin-bottom: 0.15rem;
  }
  .paplt-download-swiper .slide-title {
    font-size: 0.34rem;
    line-height: 0.48rem;
    height: auto;
  }
  .paplt-download-swiper .slide-bot {
    justify-content: flex-start;
    margin: 0.34rem 0 0;
  }

  .paplt-st-video {
    padding: 1rem 0 0;
  }

  .paplt-video-swiper {
    padding: 0;
    margin: 0;
    overflow: visible;
  }
  .paplt-video-swiper .swiper-slide {
    width: 100%;
  }
  .paplt-video-swiper .icon-play {
    width: 1.02rem;
    height: 1.02rem;
  }
  .paplt-video-swiper .slide-body {
    height: 3.06rem;
    padding: 0.5rem;
  }
  .paplt-video-swiper .slide-title {
    height: auto;
    font-size: 0.34rem;
    line-height: 0.48rem;
    max-height: calc(0.48rem * 2);
    padding: 0;
  }
  .paplt-video-swiper .slide-desc {
    font-size: 0.28rem;
    line-height: 0.4rem;
    height: auto;
    max-height: calc(0.4rem * 2);
    margin: 0.3rem 0 0;
  }
}
/* 自定义样式-应用详细 */
.p-application-detail {
  background-color: #FAFAFA;
}

.papltdet-recom-wrap .dynamic-widget_recommend {
  background-color: transparent;
  padding: 0;
}
.papltdet-recom-wrap .dynamic-recom-block {
  border-top: solid 1px #D7D7DA;
  padding: 4.5rem 0 3rem;
}

@media (min-width: 992px) {
  .papltdet-st-intord .rocket-grid-column {
    display: block;
  }
  .papltdet-st-intord .papltdet-introd-imgs {
    position: sticky;
    top: 7rem;
  }
}
@media (max-width: 991.98px) {
  .papltdet-st-design {
    overflow: hidden;
  }

  .dynamic-widget_recommend {
    overflow: hidden;
  }
  .dynamic-widget_recommend .swiper-slide {
    height: auto;
  }
  .dynamic-widget_recommend .inner-slide {
    height: 100%;
  }

  .papltdet-recom-wrap .dynamic-widget_recommend {
    background-color: transparent;
    padding: 0;
  }
  .papltdet-recom-wrap .dynamic-recom-block {
    padding: 1rem 0 1.4rem;
  }
}
/* 自定义样式-案例频道 */
.public-banner-h653 .public-banner .inner-slide {
  position: relative;
}
.public-banner-h653 .public-banner .img-up-text {
  position: absolute;
}
.public-banner-h653 .public-banner .imgwrap img {
  height: 33.9583333333vw;
  width: 100%;
}
.public-banner-h653 .public-banner .img-up-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.public-banner-h653 .public-banner .global-inner {
  display: flex;
  flex-direction: column;
  padding-top: 12.7604166667vw;
}
.public-banner-h653 .public-banner .brand {
  margin-bottom: 1.35rem;
}
.public-banner-h653 .public-banner .brand img {
  height: 1.75em;
  display: block;
}
.public-banner-h653 .public-banner .title {
  font-size: 3em;
  line-height: 1.2em;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.public-banner-h653 .public-banner .desc {
  font-size: 1em;
  line-height: 1.55em;
  color: #fff;
  font-weight: 400;
}
.public-banner-h653 .public-banner .public-button-wrap {
  display: flex;
  padding: 1.6em 0 0 0;
}
.public-banner-h653 .public-banner .public-button-wrap .public-button > * {
  min-width: 8em;
}

.case-list-wrap {
  padding: 5em 4.5em 3.8em 4.5em;
  min-height: 28.05em;
}
.case-list-wrap .rocket-title-xxl {
  font-weight: 700;
  margin-bottom: 2.4rem;
}
.case-list-wrap .inner {
  padding: 0em 4.5em;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5em 1.5em;
}
.case-list .inner-item {
  display: block;
  height: 100%;
}
.case-list .item-img {
  padding-top: 37.12%;
  height: 0;
  position: relative;
  overflow: hidden;
  flex: none;
}
.case-list .item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.case-list .item-body {
  padding: 1.7em 1em 1.6em 1.75em;
  border: 1px solid #CACACA;
  border-top: 0;
  flex: 1;
}
.case-list .item-brand {
  display: flex;
  margin-bottom: 1.65rem;
}
.case-list .item-brand img {
  height: 1.75em;
}
.case-list .item-title {
  font-size: 1.3em;
  line-height: 1.3846153846em;
  color: #333;
  font-weight: 700;
  margin-bottom: 0.6rem;
  max-height: calc(1.8rem * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.case-list .item-desc {
  font-size: 0.8em;
  line-height: 1.625em;
  color: #333;
  font-weight: 400;
  max-height: calc(1.3rem * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.case-list .public-button-wrap {
  display: flex;
  padding-top: 1em;
}
.case-list .public-button-wrap .public-button > * {
  min-width: 8.4em;
  border: 1px solid #222222;
  background: none;
  gap: 0 0.75rem;
}
.case-list .public-button-wrap .public-button span {
  color: #222;
  font-size: 0.8em;
  line-height: 1.5em;
  font-weight: 700;
}
.case-list .public-button-wrap .public-button .icon {
  background-color: #222;
}

.p-case .public-banner .imgwrap {
  position: relative;
}
.p-case .public-banner .imgwrap img {
  z-index: 1;
}
.p-case .public-banner .imgwrap::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url("/img-common-ban/zhe.webp.jpg") no-repeat center bottom;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 992px) {
  .case-list .inner-item {
    display: flex;
    flex-direction: column;
  }
  .case-list .inner-item:hover .item-img img {
    transform: scale(1.03);
  }
  .case-list .inner-item:hover .item-title {
    color: #E00E1E;
  }
  .case-list .inner-item:hover .public-button-wrap .public-button > * {
    border: 1px solid #AA000D;
    background: #AA000D;
  }
  .case-list .inner-item:hover .public-button-wrap .public-button > * span {
    color: #fff;
  }
  .case-list .inner-item:hover .public-button-wrap .public-button > * .icon {
    background-color: #fff;
  }
  .case-list .item-body {
    min-height: 16.5rem;
  }
  .case-list .item-mid {
    min-height: 6rem;
    overflow: hidden;
    margin: 0.8rem 0 0;
  }
}
@media (max-width: 991.98px) {
  .p-case .public-banner .imgwrap::after {
    background-image: url("/img-common-ban/zhe_m.webp.jpg");
  }

  .public-banner-h653 .public-banner .imgwrap img {
    height: 9.8rem;
    width: 100%;
  }
  .public-banner-h653 .public-banner .global-inner {
    display: flex;
    flex-direction: column;
    padding-top: 3.57rem !important;
  }
  .public-banner-h653 .public-banner .brand {
    margin-bottom: 0.5rem;
  }
  .public-banner-h653 .public-banner .brand img {
    height: 0.55rem;
    display: block;
  }
  .public-banner-h653 .public-banner .title {
    font-size: 0.6rem;
    line-height: 0.76rem;
    margin-bottom: 0.2rem;
  }
  .public-banner-h653 .public-banner .desc {
    font-size: 0.3rem;
    line-height: 0.46rem;
  }
  .public-banner-h653 .public-banner .public-button-wrap {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .public-banner-h653 .public-banner .public-button-wrap .public-button {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .public-banner-h653 .public-banner .public-button-wrap .public-button > * {
    width: 100%;
    height: 100%;
  }

  body.p-case.header-transparent .rocket-widget__crumb {
    top: 2.14rem;
  }

  .case-list-wrap {
    min-height: 50vh;
    padding: 1.5rem 0 1.2rem 0;
  }
  .case-list-wrap .inner {
    padding: 0;
  }
  .case-list-wrap .rocket-title-xxl {
    margin-bottom: 0.44rem;
  }

  .case-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.5rem 0;
  }
  .case-list .item-desc {
    font-size: 0.3rem;
    line-height: 0.46rem;
    max-height: calc(0.46rem * 2);
  }
  .case-list .inner-item {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  }
  .case-list .item-title {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.15rem;
    max-height: calc(0.52rem * 2);
  }
  .case-list .item-brand {
    margin-bottom: 0.43rem;
  }
  .case-list .item-brand img {
    height: 0.48rem;
  }
  .case-list .item-body {
    min-height: 3.3rem;
    padding: 0.5rem 0.4rem 0.7rem 0.4rem;
  }
}
/* 自定义样式-案例详细 */
.p-casedet .custom-widget_footConsult {
  display: none;
}
.p-casedet .public-banner .imgwrap {
  position: relative;
}
.p-casedet .public-banner .imgwrap img {
  z-index: 1;
}
.p-casedet .public-banner .imgwrap::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url("/img-common-ban/zhe.webp.jpg") no-repeat center bottom;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  pointer-events: none;
}

.case-del {
  padding: 3.15em 0 4rem;
}
.case-del .inner {
  padding: 0 4.6875vw;
  margin-left: auto;
  margin-right: auto;
}

.case-editor-box {
  display: flex;
  align-items: stretch;
  gap: 0 3.90625vw;
}
.case-editor-box .inner-l {
  flex: 1;
}
.case-editor-box .inner-r {
  width: 23.828125%;
}

.friendship-title {
  display: flex;
  align-items: center;
  gap: 0 0.125rem;
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 1rem;
}
.friendship-title .text {
  font-size: 0.8em;
  line-height: 2em;
  color: #333;
  font-weight: 700;
  white-space: nowrap;
}
.friendship-title .icon {
  width: 0.2rem;
  height: 0.9rem;
  background: #E00E1E;
  transform: skewX(-22deg) translateY(-50%);
  position: absolute;
  left: 0;
  top: 50%;
}

.friendship {
  position: sticky;
  top: 8.2rem;
  padding: 0 0 4rem;
}
.friendship .foot-share {
  gap: 0 0.7rem;
}
.friendship .foot-share .icon {
  display: block;
  position: relative;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 100%;
}
.friendship .foot-share .icon img {
  width: 2.3em;
  height: 2.3em;
  display: block;
}
.friendship .foot-share .icon .hover {
  display: none;
}
.friendship .foot-share .dropdown .box {
  background: #ececec;
}
.friendship .foot-share .dropdown::before {
  border-bottom-color: #ececec;
}
.friendship .foot-share .dropdown img {
  width: 5em;
  height: 5em;
}
.friendship .foot-share .wechat-qrcode-box {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 999;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  padding: 10px 0 0;
}
.friendship .foot-share .wechat-qrcode {
  color: #666;
  font-size: 12px;
  text-align: center;
  -webkit-transition: all .2s;
  transition: all .2s;
  width: 200px;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px #aaa;
  position: relative;
  padding: 0 0 5px;
}
.friendship .foot-share .wechat-qrcode .share-close {
  background: transparent;
  border: 0;
  color: #000 !important;
  font-size: 25px;
  line-height: 26px;
  display: block;
  position: absolute;
  right: 2px;
  top: -2px;
  cursor: pointer;
}
.friendship .foot-share .wechat-qrcode .toptext {
  background-color: #f3f3f3;
  color: #777;
  font-size: 12px;
  height: 26px;
  line-height: 26px;
}
.friendship .foot-share .wechat-qrcode .qrcode {
  margin: 5px auto;
  width: 138px;
}
.friendship .foot-share .wechat-qrcode .qrcode img {
  width: 100%;
  height: auto;
  display: block;
}
.friendship .foot-share .wechat-qrcode .bottext {
  color: #666;
  font-size: 1em;
  line-height: 1.95em;
}
.friendship .foot-share .list-item.active .icon {
  opacity: 1;
  border-color: var(--mt-global-color-red);
}
.friendship .foot-share .list-item.active .icon .deft {
  display: none;
}
.friendship .foot-share .list-item.active .icon .hover {
  display: block;
}
.friendship .foot-share .list-item.active .wechat-qrcode-box {
  display: block;
}

@media (min-width: 992px) {
  .global-paging.global-paging-text {
    padding-top: 2.5rem;
    flex-direction: column;
    gap: 0.5rem 0;
    width: 100%;
  }
  .global-paging.global-paging-text .paging-ctrl {
    display: block;
    width: initial;
    height: initial;
    background: initial;
    padding: 1.3rem 1.1rem 1.6rem 1.1rem;
    background: #F4F4F4;
    border: 1px solid #E4E4E4;
    width: 100%;
  }
  .global-paging.global-paging-text .paging-ctrl span {
    font-size: 0.8rem;
    line-height: 1rem;
    font-weight: 700;
    color: #E00E1E;
    margin-bottom: 0.6rem;
    display: block;
  }
  .global-paging.global-paging-text .paging-ctrl .desc {
    font-size: 1rem;
    line-height: 1.5rem;
    max-height: 3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 700;
  }
  .global-paging.global-paging-text .paging-ctrl.disabled {
    opacity: 1;
    pointer-events: auto;
  }
  .global-paging.global-paging-text .paging-ctrl.next {
    transform: rotate(0deg);
  }

  .global-paging.global-paging-text .paging-ctrl:hover .desc {
    color: #E00E1E;
  }
}
.case-del-editor {
  min-height: 50vh;
}
.case-del-editor .rocket-content__inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0;
}
.case-del-editor img {
  max-width: 100%;
}

.case-del-title {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .p-news-detail .main-box {
    position: relative;
    z-index: 21;
  }

  .global-paging.global-paging-text {
    padding: 0.6rem 0 0 0;
  }

  .p-casedet .public-banner .imgwrap::after {
    background-image: url("/img-common-ban/zhe_m.webp.jpg");
  }

  .case-del {
    padding: 1.52rem 0 1.2rem;
  }
  .case-del .inner {
    max-width: 100%;
    padding: 0;
  }
  .case-del .rocket-title-xl {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.42rem;
  }

  .case-editor-box {
    flex-direction: column;
    gap: 1.2rem 0;
  }
  .case-editor-box .inner-r {
    position: relative;
    top: 0;
    height: auto;
    width: 100%;
    z-index: 20;
  }

  .friendship {
    padding: 0;
  }
  .friendship .share-box {
    display: flex;
    align-items: center;
    gap: 0 0.28rem;
    padding-bottom: 0.59rem;
    border-bottom: 1px solid #E9E9EA;
  }
  .friendship .foot-share {
    display: flex;
    flex-direction: row;
    gap: 0 0.3rem;
    margin-top: 0.2rem;
  }
  .friendship .foot-share .wechat-qrcode-box {
    transform: translate(0%, 0);
    left: 0;
  }
  .friendship .foot-share .icon img {
    width: 0.78rem;
    height: 0.78rem;
  }
  .friendship .foot-share .wechat-qrcode {
    width: 150px;
  }
  .friendship .foot-share .wechat-qrcode .qrcode {
    width: 120px;
  }

  .friendship-title {
    padding-left: 0.33rem;
    margin-bottom: 0;
    gap: 0;
  }
  .friendship-title .icon {
    width: 0.06rem;
    height: 0.29rem;
  }
  .friendship-title .text {
    font-size: 0.3rem;
    line-height: 0.32rem;
  }
}
/* 自定义样式-制造 */
.pmake-st-topbox {
  position: relative;
}
.pmake-st-topbox .rocket-widget__crumb {
  top: 51.25vw !important;
}

.pmake-st-pt .dynamic-widget_recommend {
  padding: 0;
  background: none;
}
.pmake-st-pt .dynamic-widget_recommend .rocket-content__inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}
.pmake-st-pt .dynamic-recom-lvtit {
  display: none;
}

.pmake-keyword-swiper {
  max-width: 60.7rem;
  position: absolute;
  left: 50%;
  bottom: 8.85vw;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 20;
}
.pmake-keyword-swiper .rocket-swiper-paging .bullet:not(.active) {
  background-color: #fff;
}

.pmake-keyword-data {
  height: 3.6rem;
}
.pmake-keyword-data sup {
  font-size: 1.5rem;
  line-height: 2.7rem;
  top: 0;
}
.pmake-keyword-data sub {
  font-size: 1.5rem;
  line-height: 2.7rem;
  bottom: 0;
}

/* 针对后台 */
.layout-element .pmake-keyword-swiper {
  margin: 14vw auto 0;
  position: static;
  transform: none;
  -webkit-transform: none;
}

@media (min-width: 992px) {
  .p-manufacturing .dynamic-widget_recommend {
    overflow: initial;
  }
  .p-manufacturing .pmake-st-pt {
    overflow: hidden;
  }
  .p-manufacturing .main-box::after {
    content: '';
    display: block;
    width: 9.7rem;
    height: calc(100% - 57.5vw - 13.75rem);
    position: absolute;
    right: 0;
    top: calc(57.5vw + 13.15rem);
    z-index: 1;
    pointer-events: none;
    background: url("/img-common-make/bg.webp.jpg") no-repeat left top;
    background-size: 13.95rem auto;
  }

  .pmake-keyword-swiper .swiper-slide {
    display: flex;
    white-space: nowrap;
  }
  .pmake-keyword-swiper .swiper-slide > * {
    width: auto;
    flex: none;
  }
  .pmake-keyword-swiper .swiper-slide:nth-child(3n+2) {
    justify-content: center;
  }
  .pmake-keyword-swiper .swiper-slide:nth-child(3n+3) {
    justify-content: right;
  }

  .pmake-pross-list .rocket-layout-grid > * {
    position: relative;
  }
  .pmake-pross-list .rocket-layout-grid > *:not(:last-child) .pmake-pross-bot {
    position: relative;
  }
  .pmake-pross-list .rocket-layout-grid > *:not(:last-child) .pmake-pross-bot::after {
    content: '';
    display: block;
    width: 2rem;
    height: 4.85rem;
    position: absolute;
    left: 100%;
    top: 0;
    pointer-events: none;
    background: url("/img-common-make/pross/right.svg.jpg") no-repeat center center;
    background-size: 1.6rem auto;
  }
  .pmake-pross-list .pmake-pross-toptext {
    padding: 0 0.2em;
  }
}
@media (max-width: 991.98px) {
  body.p-manufacturing .header {
    background: #101010;
  }
  body.p-manufacturing .head-place {
    height: 1.42rem;
  }

  .pmake-st-topbox .rocket-block-banner {
    height: calc(100dvh + 25.3vw - 1.42rem - 0.8rem) !important;
  }

  .pmake-keyword-swiper {
    width: 100vw;
    max-width: none;
    padding: 0 0.5rem;
    overflow: hidden;
    bottom: 25.3vw;
  }
  .pmake-keyword-swiper .swiper-slide {
    display: flex;
  }
  .pmake-keyword-swiper .swiper-slide > * {
    min-width: 35vw;
    max-width: 100%;
  }
  .pmake-keyword-swiper .swiper-slide:nth-child(2n+2) {
    justify-content: flex-end;
  }

  .pmake-keyword-data {
    height: 0.9rem;
  }
  .pmake-keyword-data sup {
    font-size: 0.3rem;
    line-height: 0.54rem;
    top: 0;
  }
  .pmake-keyword-data sub {
    font-size: 0.3rem;
    line-height: 0.54rem;
    bottom: 0;
  }

  .pmake-pross-list {
    padding: 0 0.33rem;
  }
  .pmake-pross-list .rocket-layout-grid > * {
    position: relative;
  }
  .pmake-pross-list .rocket-layout-grid > *:not(:last-child)::after {
    content: '';
    display: block;
    width: 100%;
    height: 1.84rem;
    position: absolute;
    left: 0;
    top: 100%;
    pointer-events: none;
    background: url("/img-common-make/pross/down.svg.jpg") no-repeat center center;
    background-size: auto 0.5rem;
  }
}
/* 自定义样式-质量 */
.pquat-pt-swipbox {
  position: relative;
}

.qualt-anchor {
  width: 100%;
  height: 5px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: -6rem;
  z-index: -99;
}

.p-quality-sect {
  position: relative;
}
.p-quality-sect .st-heading {
  font-weight: bold;
}
.p-quality-sect .st-heading .red {
  color: var(--mt-global-color-red);
}
.p-quality-sect .st-text {
  margin: 1rem 0 0;
}
.p-quality-sect .st-header {
  margin-bottom: 2rem;
}

.pquat-st-policy {
  padding: 4.7rem 0 0;
}

.pquat-policy-layout {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  grid-gap: 0 3.1rem;
}

.pquat-policy-media {
  width: 46.58%;
  flex: none;
  max-width: 34rem;
  position: relative;
}
.pquat-policy-media .imgs {
  width: 100%;
  padding: 66.18% 0 0;
  overflow: hidden;
  position: relative;
}
.pquat-policy-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.pquat-policy-body {
  flex: 1;
  padding: 0 0 0.7rem;
}
.pquat-policy-body .st-heading {
  padding: 0 0 2.5rem;
  border-bottom: solid 1px #E9E9EA;
  margin-bottom: 2rem;
}
.pquat-policy-body .keyword {
  font-size: 1.3rem;
  line-height: 1.9rem;
  font-weight: bold;
  margin-bottom: 1.35rem;
}

.pquat-policy-list {
  position: relative;
  color: #222;
  display: grid;
  grid-gap: 1.5rem 0;
}
.pquat-policy-list .item {
  width: 100%;
  display: flex;
  align-items: center;
  grid-gap: 0 1rem;
}
.pquat-policy-list .item-ico {
  flex: none;
  position: relative;
}
.pquat-policy-list .item-ico img {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  object-fit: contain;
  object-position: center;
  position: relative;
}
.pquat-policy-list .item-body {
  flex: 1;
}
.pquat-policy-list .item-title {
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: bold;
}
.pquat-policy-list .item-text {
  margin: 5px 0 0;
  font-size: 0.9rem;
  line-height: 1.5rem;
}

.pquat-st-advant {
  margin: 6rem 0;
  background: #E7EDFB;
  position: relative;
  padding: 4.25rem 0 3.5rem;
}
.pquat-st-advant::before {
  content: '';
  display: block;
  width: min(8.5vw, 8.15rem);
  height: min(86vw, 82.5rem);
  background: url("/img-common-qua/left.svg.jpg") no-repeat right top;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-21.4%);
  -webkit-transform: translateY(-21.4%);
}
.pquat-st-advant .st-heading {
  padding: 0 0 1.5rem;
  margin-bottom: 2rem;
  border-bottom: solid 1px #D9D9D9;
}

.pquat-advant-word {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #222;
  margin-bottom: 1.5rem;
}

.pquat-advant-text > * {
  margin-bottom: 1rem;
}
.pquat-advant-text > *:last-child {
  margin-bottom: 0;
}

.pquat-advant-bot {
  display: flex;
  margin: 1rem 0 0;
}
.pquat-advant-bot .btn-download {
  display: flex;
  font-size: max(14px, 0.8rem);
  line-height: 1.8rem;
  font-weight: bold;
  white-space: nowrap;
  color: #E00E1E;
}
.pquat-advant-bot .btn-download > * {
  display: flex;
  align-items: center;
  grid-gap: 0 8px;
}
.pquat-advant-bot .btn-download .bi {
  flex: none;
  width: 1rem;
  height: 1rem;
  display: block;
  background: currentColor;
  -webkit-mask: url("/img-common-download/black.svg.jpg") no-repeat center/contain;
  mask: url("/img-common-download/black.svg.jpg") no-repeat center/contain;
}

.pquat-st-reliab {
  margin: 6rem 0 0;
  position: relative;
}
.pquat-st-reliab .st-heading {
  margin-bottom: 0.9rem;
}

.pquat-reliab-tabbox {
  background: #fff;
  border-bottom: solid 2px #E9E9EA;
  position: sticky;
  top: 5rem;
  z-index: 20;
  font-size: .9rem;
  line-height: 1.2rem;
  color: #000;
}
.pquat-reliab-tabbox .tablist {
  display: flex;
  grid-gap: 0 5.5rem;
}
.pquat-reliab-tabbox .trigger {
  display: flex;
  align-items: center;
  padding: 1.1rem 0;
  position: relative;
  cursor: pointer;
}
.pquat-reliab-tabbox .trigger::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background: var(--mt-global-color-red);
  position: absolute;
  left: 50%;
  bottom: -2px;
  pointer-events: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  opacity: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
.pquat-reliab-tabbox .active {
  color: var(--mt-global-color-red);
  font-weight: bold;
}
.pquat-reliab-tabbox .active .trigger::after {
  width: 100%;
  opacity: 1;
}

.pquat-reliab-tabcont {
  padding: 2rem 0 0;
}

.pquat-reliab-panel {
  display: none;
}
.pquat-reliab-panel.active {
  display: block;
}

.pquat-reliab-panel_header {
  margin-bottom: 1rem;
}
.pquat-reliab-panel_header p {
  margin-bottom: 12px;
}
.pquat-reliab-panel_header p:last-child {
  margin-bottom: 0;
}
.pquat-reliab-panel_header .lvtit {
  font-weight: bold;
  margin-bottom: 1rem;
}
.pquat-reliab-panel_header .lvtit .red, .pquat-reliab-panel_header .lvtit span {
  color: var(--mt-global-color-red);
}
.pquat-reliab-panel_header .text img {
  max-width: 100%;
  height: auto !important;
}
.pquat-reliab-panel_header .handle-box {
  margin: 0.5rem 0 0;
}
.pquat-reliab-panel_header .btn-viewimg {
  font-size: 0.8rem;
  line-height: 1.8rem;
  color: var(--mt-global-color-red);
  font-weight: bold;
  cursor: pointer;
}
.pquat-reliab-panel_header .btn-viewimg > * {
  display: flex;
  align-items: center;
}
.pquat-reliab-panel_header .btn-viewimg .bi-image {
  width: 1rem;
  height: 1rem;
  display: block;
  flex: none;
  margin: 0 6px 0 0;
  -webkit-mask: url("/img-common-icon/img.svg.jpg") no-repeat center/contain;
  mask: url("/img-common-icon/img.svg.jpg") no-repeat center/contain;
  background: currentColor;
}
.pquat-reliab-panel_header .modal-box {
  display: none;
}

.modal-reliab-box .imgs img {
  width: auto !important;
  max-width: 100% !important;
  box-shadow: none !important;
}

.pquat-st-cert {
  margin: 5rem 0 0;
  padding: 0 0 3.6rem;
  background-color: #E8E4DB;
  position: relative;
}
.pquat-st-cert::after {
  content: '';
  display: block;
  width: 8.5vw;
  height: 88.38vw;
  background: url("/img-common-qua/bg.webp.jpg") no-repeat right top;
  background-size: 12.2vw auto;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-30%, -15.6%);
  -webkit-transform: translate(-30%, -15.6%);
  z-index: 10;
  pointer-events: none;
}
.pquat-st-cert .red {
  color: var(--mt-global-color-red);
}

.pquat-cert-topbox {
  padding: 3rem 0 0 1.4rem;
  border-left: solid 8px var(--mt-global-color-red);
}
.pquat-cert-topbox p {
  margin-bottom: 12px;
}
.pquat-cert-topbox p:last-child {
  margin-bottom: 0;
}
.pquat-cert-topbox > *:last-child {
  margin-bottom: 0;
}
.pquat-cert-topbox .st-heading {
  margin-bottom: 1.4rem;
}
.pquat-cert-topbox .rocket-block-text {
  margin-bottom: 1rem;
}
.pquat-cert-topbox .rocket-block-text .red {
  text-decoration: underline;
}
.pquat-cert-topbox .text2 {
  font-weight: bold;
}

.pquat-cert-botbox {
  padding: 2.35rem 0 0;
  margin: 2.7rem 0 0;
  border-top: solid 1px #C0B390;
}

.pquat-cert-layout {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 35.6% 1fr;
  grid-gap: 0 3.5rem;
  align-items: center;
}

.pquat-cert-media {
  position: relative;
}
.pquat-cert-media .imgslist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 0.5rem;
}
.pquat-cert-media .imgs {
  width: 100%;
  padding: 57.25% 0 0;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: solid 5px #D7CFBF;
  border-radius: 8px;
}
.pquat-cert-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.pquat-cert-body {
  font-size: 1.3rem;
  line-height: 2.25rem;
  font-weight: bold;
}
.pquat-cert-body p, .pquat-cert-body li {
  padding-left: 2.25rem;
  position: relative;
}
.pquat-cert-body p::before, .pquat-cert-body li::before {
  content: '';
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  background: url("/img-common-list/check.svg.jpg") no-repeat left center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: calc((2.25rem - 1.3rem) / 2);
}

.pquat-st-patent {
  padding: 6.1rem 0 0;
}

.pquat-patent-layout {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 51% 1fr;
  grid-gap: 0 2.9rem;
}

.pquat-patent-media {
  position: relative;
}
.pquat-patent-media .imgs {
  width: 100%;
  padding: 100% 0 0;
  overflow: hidden;
  position: sticky;
  top: 6rem;
}
.pquat-patent-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.pquat-patent-list {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  max-height: 600vh;
}
.pquat-patent-list::before {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  border-left: dashed 2px #7E7E7E;
  position: absolute;
  left: 0.9rem;
  top: 0;
  pointer-events: none;
  z-index: 1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.pquat-patent-list.is-over {
  max-height: 1100px;
}
.pquat-patent-list.is-over::after {
  content: '';
  display: block;
  width: 100%;
  height: 8.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 80%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 15;
}

.pquat-patent-item {
  position: relative;
  padding: 0 0 0 3.2rem;
  margin-bottom: 2.2rem;
  z-index: 10;
}
.pquat-patent-item:last-child {
  margin-bottom: 0;
}
.pquat-patent-item::before {
  content: '';
  display: block;
  width: 1.8rem;
  height: 2.4rem;
  background: url("/img-common-qua/down.svg.jpg") no-repeat center center #fff;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.pquat-patent-item .item-year {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.pquat-patent-item .item-doc {
  font-size: 0.9rem;
  line-height: 2.2rem;
}
.pquat-patent-item .item-doc p, .pquat-patent-item .item-doc li {
  padding-left: 1.4rem;
  position: relative;
}
.pquat-patent-item .item-doc p::before, .pquat-patent-item .item-doc li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  position: absolute;
  left: calc((1.4rem - 5px) / 2);
  top: calc((2.2rem - 5px) / 2);
}

.pquat-patent-handle {
  width: 100%;
  position: relative;
  display: flex;
  font-size: 0.8rem;
  line-height: 1.5em;
  font-weight: bold;
  color: var(--mt-global-color-red);
  padding: 0 0 0 3.8rem;
}
.pquat-patent-handle .handle > * {
  display: flex;
  align-items: center;
}
.pquat-patent-handle .bi {
  width: 1em;
  height: 1em;
  display: block;
  flex: none;
  -webkit-mask: url("/img-common-show/more.svg.jpg") no-repeat center/contain;
  mask: url("/img-common-show/more.svg.jpg") no-repeat center/contain;
  position: relative;
  background: currentColor;
  margin: 0 0 0 6px;
}
.pquat-patent-handle .bi-up {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.pquat-patent-handle .btn-hide {
  display: none;
  margin: 2rem 0 0;
}

.pquat-st-product {
  padding: 5rem 0 0;
}

.pquat-pt-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pquat-pt-swiper .swiper-slide {
  width: calc((100% - 20px * 3) / 4);
}
.pquat-pt-swiper .slide-box {
  width: 100%;
  display: block;
  position: relative;
}
.pquat-pt-swiper .slide-imgs {
  width: 100%;
  position: relative;
  z-index: 1;
}
.pquat-pt-swiper .slide-imgs .imgs {
  width: 100%;
  padding: 114.29% 0 0;
  overflow: hidden;
  position: relative;
}
.pquat-pt-swiper .slide-imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.pquat-pt-swiper .slide-body {
  width: 100%;
  padding: 2rem 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
.pquat-pt-swiper .slide-title {
  position: relative;
  padding-left: 8px;
  border-left: solid 4px #D54651;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: bold;
}

@media (min-width: 992px) {
  .pquat-reliab-panel_body .rocket-block-text {
    overflow: visible;
  }
  .pquat-reliab-panel_body .rocket-block-text > * {
    margin-bottom: 1.5rem;
  }
  .pquat-reliab-panel_body .rocket-block-text > *:last-child {
    margin-bottom: 0;
  }
  .pquat-reliab-panel_body .rocket-block-text h2, .pquat-reliab-panel_body .rocket-block-text h3, .pquat-reliab-panel_body .rocket-block-text h4 {
    margin: 0.8rem 0 0.2rem;
  }
  .pquat-reliab-panel_body .rocket-block-text table th:first-child, .pquat-reliab-panel_body .rocket-block-text table td:first-child {
    width: 4rem;
    text-align: center;
  }
  .pquat-reliab-panel_body .rocket-block-text table th:last-child, .pquat-reliab-panel_body .rocket-block-text table td:last-child {
    width: 30.6%;
  }
  .pquat-reliab-panel_body .rocket-block-text table td {
    white-space: nowrap;
  }
  .pquat-reliab-panel_body .rocket-block-text table td:last-child {
    white-space: normal;
  }
  .pquat-reliab-panel_body .rocket-block-text table td[colspan], .pquat-reliab-panel_body .rocket-block-text table td[rowspan] {
    width: 30%;
    white-space: normal;
  }

  .pquat-cert-topbox .text2 {
    font-weight: bold;
    line-height: 1.3rem;
  }

  .pquat-pt-swiper .swiper-slide:hover .slide-imgs img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }

  .pquat-advant-bot .btn-download:hover {
    text-decoration: underline;
  }
}
@media (max-width: 991.98px) {
  .p-quality .public-banner .desc {
    max-width: 4.65rem;
  }

  .qualt-anchor {
    top: -1.2rem;
  }

  .p-quality-sect .st-header {
    margin-bottom: 0.5rem;
  }
  .p-quality-sect .st-text {
    margin: 0.22rem 0 0;
  }

  .pquat-st-policy {
    padding: 1.2rem 0 0;
  }

  .pquat-policy-layout {
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 0.5rem 0;
  }

  .pquat-policy-media {
    width: 100%;
    max-width: none;
  }

  .pquat-policy-body {
    padding: 0;
  }
  .pquat-policy-body .st-heading {
    padding: 0 0 0.4rem;
    margin-bottom: 0.4rem;
  }
  .pquat-policy-body .keyword {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.22rem;
  }

  .pquat-policy-list {
    margin: 0.5rem 0 0;
    grid-gap: 0.4rem 0;
  }
  .pquat-policy-list .item {
    grid-gap: 0 0.25rem;
  }
  .pquat-policy-list .item-ico img {
    width: 1.2rem;
    height: 1.2rem;
  }
  .pquat-policy-list .item-title {
    font-size: 0.4rem;
    line-height: 0.52rem;
  }
  .pquat-policy-list .item-text {
    margin: 0.15rem 0 0;
    font-size: 0.3rem;
    line-height: 0.46rem;
  }

  .pquat-st-advant {
    margin: 1.2rem 0;
    padding: 0.9rem 0;
  }
  .pquat-st-advant::before {
    display: none;
  }
  .pquat-st-advant .st-heading {
    padding: 0 0 0.4rem;
    margin-bottom: 0.5rem;
  }

  .pquat-advant-word {
    font-size: 0.4rem;
    line-height: 0.52rem;
    margin-bottom: 0.4rem;
  }

  .pquat-advant-text > * {
    margin-bottom: 0.25rem;
  }

  .pquat-advant-bot {
    margin: 0.5rem 0 0;
  }
  .pquat-advant-bot .btn-download {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .pquat-advant-bot .btn-download > * {
    grid-gap: 0 0.15rem;
  }
  .pquat-advant-bot .btn-download .bi {
    width: 0.34rem;
    height: 0.34rem;
  }

  .pquat-st-reliab {
    margin: 1.2rem 0 0;
  }
  .pquat-st-reliab .st-heading {
    margin-bottom: 0.2rem;
  }

  .pquat-reliab-tabbox {
    border-bottom: solid 1px #E9E9EA;
    top: 1.42rem;
    font-size: .3rem;
    line-height: 0.46rem;
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
  }
  .pquat-reliab-tabbox .tablist {
    grid-gap: 0 1rem;
  }
  .pquat-reliab-tabbox .trigger {
    padding: 0.2rem 0;
  }
  .pquat-reliab-tabbox .trigger::after {
    height: 2px;
    bottom: -1px;
  }

  .pquat-reliab-tabcont {
    padding: 0.4rem 0 0;
  }

  .pquat-reliab-panel_header {
    margin-bottom: 0.5rem;
  }
  .pquat-reliab-panel_header .lvtit {
    margin-bottom: 0.22rem;
  }
  .pquat-reliab-panel_header .handle-box {
    margin: 0.22rem 0 0;
  }
  .pquat-reliab-panel_header .btn-viewimg {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .pquat-reliab-panel_header .btn-viewimg .bi-image {
    width: 0.34rem;
    height: 0.34rem;
    margin: 0 4px 0 0;
  }

  .pquat-reliab-panel_body .rocket-block-text {
    overflow: visible;
  }
  .pquat-reliab-panel_body .rocket-block-text > * {
    margin-bottom: 0.4rem;
  }
  .pquat-reliab-panel_body .rocket-block-text > *:last-child {
    margin-bottom: 0;
  }
  .pquat-reliab-panel_body .rocket-block-text h2, .pquat-reliab-panel_body .rocket-block-text h3, .pquat-reliab-panel_body .rocket-block-text h4 {
    margin: 0.6rem 0 0.22rem;
  }
  .pquat-reliab-panel_body .rocket-block-text table {
    margin: 0;
  }
  .pquat-reliab-panel_body .rocket-block-text table td:first-child {
    text-align: left;
  }
  .pquat-reliab-panel_body .rocket-block-text table td:last-child {
    min-width: 75vw;
  }
  .pquat-reliab-panel_body .rocket-block-text table th:first-child {
    text-align: center;
  }
  .pquat-reliab-panel_body .rocket-block-text table th:last-child {
    min-width: 75vw;
  }
  .pquat-reliab-panel_body .rocket-block-text table td {
    white-space: nowrap;
  }
  .pquat-reliab-panel_body .rocket-block-text table td:last-child {
    white-space: normal;
  }
  .pquat-reliab-panel_body .rocket-text-table {
    margin-bottom: 0.5rem;
  }

  .pquat-st-cert {
    margin: 1.2rem 0 0;
    padding: 0 0 1.2rem;
  }
  .pquat-st-cert::after {
    display: none;
  }

  .pquat-cert-topbox {
    padding: 1.2rem 0 0.12rem 0.3rem;
    border-left: solid 4px var(--mt-global-color-red);
  }
  .pquat-cert-topbox .st-heading {
    margin-bottom: 0.22rem;
  }
  .pquat-cert-topbox .rocket-block-text {
    margin-bottom: 0.22rem;
  }

  .pquat-cert-botbox {
    padding: 0.6rem 0 0;
    margin: 0.48rem 0 0;
  }

  .pquat-cert-layout {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.58rem 0;
    align-items: flex-start;
  }

  .pquat-cert-media .imgslist {
    grid-gap: 0 0.2rem;
  }
  .pquat-cert-media .imgs {
    border-width: 3px;
    border-radius: 4px;
  }

  .pquat-cert-body {
    font-size: 0.4rem;
    line-height: 0.52rem;
  }
  .pquat-cert-body p, .pquat-cert-body li {
    padding-left: 0.54rem;
    margin-bottom: 0.3rem;
  }
  .pquat-cert-body p::before, .pquat-cert-body li::before {
    width: 0.34rem;
    height: 0.34rem;
    top: calc((0.52rem - 0.34rem) / 2);
  }
  .pquat-cert-body p:last-child, .pquat-cert-body li:last-child {
    margin-bottom: 0;
  }

  .pquat-st-patent {
    padding: 1.2rem 0 0;
  }

  .pquat-patent-layout {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.5rem 0;
  }

  .pquat-patent-media .imgs {
    position: relative;
    top: 0;
  }

  .pquat-patent-list::before {
    border-left: dashed 1px #7E7E7E;
    left: 0.24rem;
  }
  .pquat-patent-list.is-over {
    max-height: 263vw;
  }
  .pquat-patent-list.is-over::after {
    height: 1.7rem;
  }

  .pquat-patent-item {
    padding: 0 0 0 0.6rem;
    margin-bottom: 0.6rem;
  }
  .pquat-patent-item::before {
    width: 0.46rem;
    height: 0.62rem;
  }
  .pquat-patent-item .item-year {
    font-size: 0.5rem;
    line-height: 0.62rem;
    margin-bottom: 0.3rem;
  }
  .pquat-patent-item .item-doc {
    font-size: 0.3rem;
    line-height: 0.46rem;
  }
  .pquat-patent-item .item-doc p, .pquat-patent-item .item-doc li {
    padding-left: 0.48rem;
    margin-bottom: 0.2rem;
  }
  .pquat-patent-item .item-doc p:last-child, .pquat-patent-item .item-doc li:last-child {
    margin-bottom: 0;
  }
  .pquat-patent-item .item-doc p::before, .pquat-patent-item .item-doc li::before {
    width: 5px;
    height: 5px;
    left: calc((0.48rem - 5px) / 2);
    top: calc((0.46rem - 5px) / 2);
  }

  .pquat-patent-handle {
    justify-content: center;
    font-size: 0.28rem;
    line-height: 0.4em;
    padding: 0;
  }
  .pquat-patent-handle .handle {
    margin: 0.6rem 0 0;
  }

  .pquat-st-product {
    padding: 1.2rem 0 0;
  }

  .pquat-pt-swiper .swiper-slide {
    width: 100%;
  }
  .pquat-pt-swiper .slide-body {
    padding: 0.74rem 0.52rem;
  }
  .pquat-pt-swiper .slide-title {
    font-size: 0.34rem;
    line-height: 0.45rem;
  }
}
