@charset "UTF-8";
/*******/
/******/
/* 公共按钮样式 */
@keyframes btnAnt {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes btnAnt {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
.btnbox {
  width: 100%;
  display: -webkit-flex;
  display: flex;
}

.cntd-btn {
  -webkit-flex: none;
          flex: none;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
}
.cntd-btn .bi {
  background-color: currentColor;
  display: block;
}
.cntd-btn .bi-download {
  -webkit-mask: url("../images/icon-download.svg") no-repeat center/contain;
  mask: url("../images/icon-download.svg") no-repeat center/contain;
}
.cntd-btn .bi-consult {
  -webkit-mask: url("../images/icon-consult.svg") no-repeat center/contain;
  mask: url("../images/icon-consult.svg") no-repeat center/contain;
}

.cntd-btn-fill-blue {
  width: 8.8rem;
  height: 2.5rem;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  background-color: var(--mt-global-color-blue);
  font-size: 0.9rem;
  line-height: 1em;
  color: #fff;
  font-weight: 500;
}
.cntd-btn-fill-blue > * {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: inherit;
}

.cntd-btn-blue {
  width: 8.8rem;
  height: 2.5rem;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  border: solid 1px var(--mt-global-color-blue);
  background-color: transparent;
  font-size: 0.9rem;
  line-height: 1em;
  color: var(--mt-global-color-blue);
  font-weight: 500;
}
.cntd-btn-blue > * {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: inherit;
}

.cntd-btn-fill-black {
  width: 8.8rem;
  height: 2.5rem;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  background-color: var(--mt-global-color-black-dark);
  font-size: 0.9rem;
  line-height: 1em;
  color: #fff;
  font-weight: 500;
}
.cntd-btn-fill-black > * {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: inherit;
}

.cntd-listall-box {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 2.5rem 0 0;
}

@media (min-width: 992px) {
  .cntd-btn-fill-blue:hover {
    background-color: var(--mt-global-color-blue-hover);
  }
  .cntd-btn-blue:hover {
    background-color: var(--mt-global-color-blue-hover);
    border-color: var(--mt-global-color-blue-hover);
    color: #fff;
  }
  .cntd-btn-fill-black:hover {
    background-color: color-mix(in srgb, var(--mt-global-color-blue-hover), black 10%);
  }
}
@media (max-width: 991.98px) {
  .cntd-btn-fill-blue {
    width: 3rem;
    height: 0.84rem;
    font-size: 0.32rem;
  }
  .cntd-btn-fill-black {
    width: 3rem;
    height: 0.84rem;
    font-size: 0.32rem;
  }
  .cntd-listall-box {
    margin: 0.6rem 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: -webkit-flex;
  display: flex;
  font-size: 0.8rem;
  line-height: 1em;
  color: #0052b7;
  width: 100%;
  height: -webkit-calc(2.4rem + 2px);
  height: calc(2.4rem + 2px);
  -webkit-align-items: center;
          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: -webkit-calc(100% + 0.6rem);
  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: 0.8rem;
  line-height: 1.5em;
  color: #363636;
  white-space: nowrap;
  overflow: hidden;
  overflow-y: auto;
  max-height: -webkit-calc(12em + 3rem);
  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: 0.28rem;
  }
  .byted-select-arrow .bi {
    width: 0.3rem;
    height: 0.3rem;
  }
  .byted-select-clear {
    right: 0.28rem;
  }
  .byted-select-clear .bi {
    width: 0.3rem;
    height: 0.3rem;
  }
  .byted-popover-wrapper {
    border-radius: 0.32rem;
    top: -webkit-calc(100% + 0.24rem);
    top: calc(100% + 0.24rem);
    padding: 0.1rem;
  }
  .byted-option-list {
    font-size: 0.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: 0.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: 0.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: 0.8em;
  padding: 0.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: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  margin: 2rem 0 0;
}

.paging-ctrl {
  -webkit-flex: none;
          flex: none;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  border-radius: 100%;
  -webkit-transition: all 0s;
  transition: all 0s;
  background-color: transparent;
  color: #ccc;
  border: solid 1px #ccc;
  position: relative;
  cursor: pointer;
}
.paging-ctrl .arrow {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  position: relative;
  background: no-repeat center center;
  background-size: contain;
}
.paging-ctrl.prev .arrow {
  background-image: url("../images/paging-prev-no.svg");
}
.paging-ctrl.next .arrow {
  background-image: url("../images/paging-next-no.svg");
}
.paging-ctrl.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.paging-num {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.paging-num a {
  font-size: 0.8em;
  line-height: 1.875em;
  color: #111;
}
.paging-num.web {
  margin: 0 1.1rem;
}
.paging-num.web a {
  -webkit-flex: none;
          flex: none;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-transition: all 0s;
  transition: all 0s;
  font-size: 0.8rem;
  line-height: 1em;
}
.paging-num.web a.active {
  font-size: 1.1rem;
  color: var(--mt-global-color-blue-light);
}
.paging-num.app {
  -webkit-flex: 1;
          flex: 1;
  font-size: 0.32rem;
  line-height: 0.48rem;
  color: #000;
  -webkit-justify-content: center;
          justify-content: center;
}
.paging-num.app .current {
  color: var(--mt-global-color-blue);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.paging-num.app .current::after {
  content: "/";
  color: #000;
  margin: 0 0.2rem;
}

@media (min-width: 992px) {
  .paging-ctrl:hover {
    background-color: var(--mt-global-color-blue-light);
    border-color: var(--mt-global-color-blue-light);
    color: #fff;
  }
  .paging-ctrl:hover.prev .arrow {
    background-image: url("../images/paging-prev-no_h.svg");
  }
  .paging-ctrl:hover.next .arrow {
    background-image: url("../images/paging-next-no_h.svg");
  }
  .paging-num a:hover {
    color: var(--mt-global-color-blue-light);
  }
}
@media (max-width: 991.98px) {
  .global-paging {
    margin: 0.6rem 0 0;
    padding: 0 0.4rem;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .paging-ctrl {
    width: 0.75rem;
    height: 0.75rem;
  }
}
/* 查看大图 */
.modal-watchImg {
  background: rgba(0, 0, 0, 0.75);
}
.modal-watchImg .modal-dialog {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.modal-watchImg .modal-content {
  width: auto;
  height: auto;
}
.modal-watchImg .modal-close {
  color: #fff;
  opacity: 0.8;
}
.modal-watchImg .modal-body {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex: initial;
          flex: initial;
  -webkit-transition: all 0.3s;
  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 .rocket-image {
  background: #fff;
  padding: 15px 15px 23px;
}
.modal-watchImg .rocket-image img {
  width: 450px;
  max-width: 100%;
  max-height: 69vh;
  position: relative;
}
.modal-watchImg .rocket-image__option {
  font-size: 16px;
  line-height: 1.25em;
  color: #fff;
  padding: 13px 15px;
  text-align: left;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.modal-watchImg.show .modal-body {
  scale: 1;
}

@media (min-width: 992px) {
  .modal-watchImg .modal-close {
    padding: 0 1.25rem;
    right: unset;
    left: 100%;
  }
  .modal-watchImg .modal-close .bi {
    width: 0.9rem;
    height: 0.9rem;
  }
  .modal-watchImg .modal-close:hover {
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  .modal-watchImg .modal-close {
    color: #111;
  }
  .modal-watchImg .modal-dialog {
    padding: 0 0.4rem;
  }
}
/* 标题 */
.s-heading-title {
  font-weight: bold;
  color: var(--mt-global-color-blue-dark);
}

.b-heading-title {
  font-weight: bold;
}

@media (min-width: 992px) {
  .s-heading-title {
    line-height: 1em;
    margin-bottom: 2.5rem;
  }
  .b-heading-title {
    line-height: 1em;
  }
}
.yd_pagination {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  gap: 0 0.27rem;
  padding: 0.92rem 0 0 0;
}
.yd_pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 0.22rem;
  height: 0.22rem;
  -webkit-transform: scale(0.72);
          transform: scale(0.72);
  background: #999;
}
.yd_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  background: #107AC0;
}

.cd-public-button-prev02-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  gap: 0 1.4em;
  padding: 1.25em 0 0 0;
}

.cd-public-button-prev02 {
  display: -webkit-flex;
  display: flex;
}
.cd-public-button-prev02 .icon {
  -webkit-mask: url(../images/arrow_right_02.svg) no-repeat center/contain;
          mask: url(../images/arrow_right_02.svg) no-repeat center/contain;
  background-color: #111;
  width: 0.9em;
  height: 0.75em;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.cd-public-button-prev02.swiper-button-disabled .icon {
  background-color: #A6ADB5;
}

.cd-public-button-next02 {
  display: -webkit-flex;
  display: flex;
}
.cd-public-button-next02 .icon {
  -webkit-mask: url(../images/arrow_right_02.svg) no-repeat center/contain;
          mask: url(../images/arrow_right_02.svg) no-repeat center/contain;
  background-color: #111;
  width: 0.9em;
  height: 0.75em;
}
.cd-public-button-next02.swiper-button-disabled .icon {
  background-color: #A6ADB5;
}

@media (max-width: 991.98px) {
  .cd-public-button-prev02-wrap {
    padding: 0.9rem 0 0 0;
  }
  .cd-public-button-prev02-wrap .cd-public-button-prev02 i, .cd-public-button-prev02-wrap .cd-public-button-next02 i {
    width: 0.33rem;
    height: 0.27rem;
  }
}
/* 动态组件-新闻列表 */
.cd-new-list-wrap, .recommend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3.6em 2em;
  min-height: 22.5em;
}
.cd-new-list-wrap .inner-item, .recommend .inner-item {
  display: block;
}
.cd-new-list-wrap .item-img, .recommend .item-img {
  position: relative;
  padding-top: 61.8101545254%;
  height: 0;
  overflow: hidden;
}
.cd-new-list-wrap .item-img img, .recommend .item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cd-new-list-wrap .item-body, .recommend .item-body {
  padding: 1.25em 0 0 0;
}
.cd-new-list-wrap .item-tag, .recommend .item-tag {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 1.25em;
}
.cd-new-list-wrap .item-tag span, .recommend .item-tag span {
  font-size: 0.9em;
  line-height: 1;
  color: #111;
  font-weight: 500;
}
.cd-new-list-wrap .item-title, .recommend .item-title {
  font-size: 1.2em;
  line-height: 1.4166666667em;
  color: #03234B;
  font-weight: 500;
  height: 2.8333333333em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cd-new-list-wrap .item-message, .recommend .item-message {
  display: -webkit-flex;
  display: flex;
  gap: 0 1.9em;
  padding: 0.8em 0 0 0;
}
.cd-new-list-wrap .item-message-item, .recommend .item-message-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 0 0.25em;
}
.cd-new-list-wrap .item-message-item span, .recommend .item-message-item span {
  font-size: 0.8em;
  line-height: 0.8em;
  color: #666;
}
.cd-new-list-wrap i.pos_icon, .recommend i.pos_icon {
  width: 1em;
  height: 1em;
  -webkit-mask: url(../images/view.svg) no-repeat center/contain;
          mask: url(../images/view.svg) no-repeat center/contain;
  background-color: #121212;
}
.cd-new-list-wrap i.time_icon, .recommend i.time_icon {
  width: 1em;
  height: 1em;
  background: url(../images/time.svg) no-repeat;
  background-size: contain;
}

@media (min-width: 992px) {
  .mtdynamic_news-list .global-paging {
    margin: 3.5rem 0 0;
  }
  .cd-new-list-wrap .list-item:hover, .recommend .list-item:hover {
    cursor: pointer;
  }
  .cd-new-list-wrap .list-item:hover .item-title, .recommend .list-item:hover .item-title {
    color: var(--mt-global-color-blue-light);
  }
  .cd-new-list-wrap .list-item:hover .item-img img, .recommend .list-item:hover .item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (max-width: 991.98px) {
  .cd-new-list-wrap, .recommend {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem 0;
    min-height: 6.85rem;
  }
  .cd-new-list-wrap i.time_icon, .recommend i.time_icon {
    width: 0.36rem;
    height: 0.36rem;
  }
  .cd-new-list-wrap i.pos_icon, .recommend i.pos_icon {
    width: 0.28rem;
    height: 0.28rem;
  }
  .cd-new-list-wrap .item-message-item, .recommend .item-message-item {
    gap: 0 0.1rem;
  }
  .cd-new-list-wrap .item-message-item span, .recommend .item-message-item span {
    font-size: 0.28rem;
    line-height: 0.28rem;
  }
  .cd-new-list-wrap .item-message, .recommend .item-message {
    padding: 0.32rem 0 0 0;
    gap: 0 0.35rem;
  }
  .cd-new-list-wrap .item-tag, .recommend .item-tag {
    margin-bottom: 0.4rem;
  }
  .cd-new-list-wrap .item-tag span, .recommend .item-tag span {
    font-size: 0.26rem;
    line-height: 0.26rem;
  }
  .cd-new-list-wrap .item-title, .recommend .item-title {
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
  .cd-new-list-wrap .item-body, .recommend .item-body {
    padding: 0.4rem 0.94rem 0 0;
  }
  .recommend {
    display: -webkit-flex;
    display: flex;
  }
}
/* 动态组件-常见问题 */
.plusOrMinus {
  position: relative;
  width: 18px;
  height: 18px;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.plusOrMinus::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #666666;
}
.plusOrMinus::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background: #666666;
}
.plusOrMinus::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.faq-list-wrap {
  min-height: 8.1em;
}
.faq-list-wrap .inner-item {
  display: block;
  padding: 1.35em 0 1.35em;
  border-bottom: 1px solid #E1E2E3;
  cursor: pointer;
}
.faq-list-wrap .faq-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.faq-list-wrap .item-title {
  font-size: 1em;
  line-height: 1.3em;
  color: #111;
  font-weight: 700;
  max-width: 80%;
}
.faq-list-wrap .faq-editor {
  padding: 1rem 0 0 0;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 0.9em;
  line-height: 1.7777777778em;
  color: #111;
}
.faq-list-wrap .faq-answer {
  height: 0;
  overflow: hidden;
}
.faq-list-wrap .list-item.cur .faq-editor {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.faq-list-wrap .list-item.cur .plusOrMinus {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-list-wrap .list-item.cur .plusOrMinus::after {
  opacity: 0;
}

@media (min-width: 992px) {
  .faq-list-wrap .list-item:hover .item-title {
    color: var(--mt-global-color-blue-light);
  }
}
@media (max-width: 991.98px) {
  .plusOrMinus {
    position: relative;
    width: 0.2rem;
    height: 0.2rem;
    display: -webkit-flex;
    display: flex;
  }
  .plusOrMinus::after {
    position: absolute;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0.03rem;
    height: 100%;
    background: #444;
  }
  .plusOrMinus::before {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 0.03rem;
    width: 100%;
    background: #444;
  }
  .faq-list-wrap {
    min-height: 50vh;
  }
  .faq-list-wrap .faq-editor {
    padding: 0.4rem 0 0.07rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .faq-list-wrap .inner-item {
    padding: 0.53rem 0 0.53rem;
    border-bottom: 0.015rem solid #d9d9d9;
  }
  .faq-list-wrap .item-title {
    font-size: 0.36rem;
    line-height: 0.5rem;
    font-weight: 700;
  }
}
/* 动态组件-热推系列 */
.pt-hotSeries-block {
  width: 100%;
  position: relative;
  background-color: #EBEFF5;
  padding: 4.5rem 0 4.9rem;
}

.pt-hotSeries-swipbox {
  position: relative;
}

.pt-hotSeries-swiper {
  overflow: hidden;
  position: relative;
}
.pt-hotSeries-swiper .slide-box {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border: solid 1px #DCDEE0;
  padding: 0.5rem 1.2rem 2.1rem;
  color: var(--mt-global-color-black-dark);
  text-align: center;
}
.pt-hotSeries-swiper .slide-imgs {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.pt-hotSeries-swiper .imgs {
  width: 100%;
  padding: 100% 0 0;
  overflow: hidden;
  position: relative;
}
.pt-hotSeries-swiper .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0, 0.55, 0.45, 1);
  -webkit-transition: all 0.5s cubic-bezier(0, 0.55, 0.45, 1);
}
.pt-hotSeries-swiper .slide-title {
  font-size: 1.4rem;
  line-height: 1.5rem;
  font-weight: bold;
}
.pt-hotSeries-swiper .slide-title span {
  color: var(--mt-global-color-blue-light);
}
.pt-hotSeries-swiper .slide-type {
  font-size: 1rem;
  line-height: 1em;
  font-weight: 500;
  margin: 0.7rem 0 0;
}
.pt-hotSeries-swiper.not-swip .swiper-wrapper {
  grid-gap: 0 1.5rem;
}

.pt-hotSeries-ctrl {
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 20;
  cursor: pointer;
  background-color: var(--mt-global-color-blue);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  color: #fff;
}
.pt-hotSeries-ctrl .bi {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
  position: relative;
  background-color: currentColor;
  border-radius: inherit;
}
.pt-hotSeries-ctrl.next {
  left: 100%;
  transform: translate(1rem, -50%);
  -webkit-transform: translate(1rem, -50%);
}
.pt-hotSeries-ctrl.next .bi {
  -webkit-mask: url("../images/swip-right.svg") no-repeat center/contain;
  mask: url("../images/swip-right.svg") no-repeat center/contain;
}
.pt-hotSeries-ctrl.prev {
  right: 100%;
  transform: translate(-1rem, -50%);
  -webkit-transform: translate(-1rem, -50%);
}
.pt-hotSeries-ctrl.prev .bi {
  -webkit-mask: url("../images/swip-left.svg") no-repeat center/contain;
  mask: url("../images/swip-left.svg") no-repeat center/contain;
}
.pt-hotSeries-ctrl.swiper-button-disabled {
  display: none !important;
}

@media (min-width: 992px) {
  .pt-hotSeries-block .s-heading-title {
    margin-bottom: 2.25rem;
  }
  .pt-hotSeries-swiper .swiper-slide {
    width: -webkit-calc((100% - 4.5rem) / 4);
    width: calc((100% - 4.5rem) / 4);
  }
  .pt-hotSeries-swiper .swiper-slide:hover .imgs img {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
  }
  .pt-hotSeries-swiper .swiper-slide:hover .slide-title, .pt-hotSeries-swiper .swiper-slide:hover .slide-type {
    color: var(--mt-global-color-blue);
  }
  .pt-hotSeries-swiper .swiper-slide:hover .slide-title > *, .pt-hotSeries-swiper .swiper-slide:hover .slide-type > * {
    color: inherit;
  }
  .pt-hotSeries-ctrl:hover {
    background-color: var(--mt-global-color-blue-dark);
  }
}
@media (max-width: 991.98px) {
  .pt-hotSeries-block {
    padding: 0.9rem 0;
    overflow: hidden;
  }
  .pt-hotSeries-block .s-heading-title {
    margin-bottom: 0.3rem;
  }
  .pt-hotSeries-swiper {
    overflow: visible;
  }
  .pt-hotSeries-swiper .slide-box {
    padding: 0 0 0.76rem;
  }
  .pt-hotSeries-swiper .slide-imgs {
    margin-bottom: 0.15rem;
  }
  .pt-hotSeries-swiper .imgs {
    height: 4.65rem;
    padding: 0;
  }
  .pt-hotSeries-swiper .slide-title {
    font-size: 0.4rem;
    line-height: 1em;
  }
  .pt-hotSeries-swiper .slide-type {
    font-size: 0.36rem;
    margin: 0.2rem 0 0;
  }
}
/* 动态组件-系列分类 */
.pt-seriestype-block {
  width: 100%;
  position: relative;
  padding: 4rem 0 4.4rem;
}

.pt-seriestype-tab_handle {
  position: sticky;
  top: 4rem;
  padding: 1.5rem 0 2.5rem;
  background-color: #fff;
  z-index: 20;
}
.pt-seriestype-tab_handle .tablist {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  grid-gap: 6px;
  overflow: auto;
}
.pt-seriestype-tab_handle .tabitem {
  background-color: #F3F4F5;
  color: var(--mt-global-color-black-dark);
  font-size: 0.9rem;
  line-height: 1em;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.pt-seriestype-tab_handle .tabitem > * {
  width: 100%;
  height: 3.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
  padding: 0 1em;
}
.pt-seriestype-tab_handle .tabitem.active {
  background-color: var(--mt-global-color-blue);
  color: #fff;
  font-weight: bold;
}

.pt-seriestype-panel {
  display: none;
}
.pt-seriestype-panel.active {
  display: block;
}

.pt-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
  position: relative;
}
.pt-list .item {
  height: 100%;
  position: relative;
}
.pt-list .item-box {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  background-color: #fff;
  border: solid 1px #E0E0E0;
  position: relative;
}
.pt-list .item-imgs {
  width: 100%;
  height: 17.75rem;
  padding: 0 1.1rem;
  overflow: hidden;
  position: relative;
  border-bottom: solid 1px #E0E0E0;
}
.pt-list .imgs {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.pt-list .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0, 0.55, 0.45, 1);
  -webkit-transition: all 0.5s cubic-bezier(0, 0.55, 0.45, 1);
}
.pt-list .item-body {
  width: 100%;
  position: relative;
  padding: 0.8rem 1rem 1.25rem;
}
.pt-list .item-title {
  font-size: 1rem;
  line-height: 1.25em;
  color: var(--mt-global-color-black-dark);
  font-weight: bold;
}
.pt-list .item-icon {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0.6rem 0 0;
}
.pt-list .item-icon img {
  width: 1.5rem;
  height: 0.7rem;
  display: block;
  object-fit: contain;
  object-position: center center;
  opacity: 0.7;
}

@media (min-width: 992px) {
  .pt-seriestype-tab_handle .tablist {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
            overflow: auto;
  }
  .pt-seriestype-tab_handle .tabitem {
    -webkit-flex: 1;
            flex: 1;
    max-width: 11.75rem;
  }
  .pt-seriestype-tab_handle .tabitem > * {
    min-width: 0;
  }
  .pt-seriestype-tab_handle .tabitem:hover {
    background-color: var(--mt-global-color-blue);
    color: #fff;
    font-weight: bold;
  }
  .pt-list .item:hover .imgs img {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
  }
  .pt-list .item:hover .item-title {
    color: var(--mt-global-color-blue);
  }
  .pt-list .item:hover .item-title > * {
    color: inherit;
  }
}
@media (max-width: 991.98px) {
  .pt-seriestype-block {
    padding: 1.2rem 0 1rem;
  }
  .pt-seriestype-tab_handle {
    top: 1.1rem;
    margin: 0 -0.4rem;
    padding: 0.3rem 0.4rem 0.6rem;
  }
  .pt-seriestype-tab_handle .tablist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4px;
  }
  .pt-seriestype-tab_handle .tabitem {
    font-size: 0.32rem;
  }
  .pt-seriestype-tab_handle .tabitem > * {
    width: 100%;
    min-width: 0;
    height: 0.84rem;
    padding: 0 1em;
  }
  .pt-seriestype-tab_handle .tabitem.active {
    font-weight: inherit;
  }
  .pt-list {
    margin: 0 -0.4rem;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.4rem 0.2rem;
    position: relative;
  }
  .pt-list .item-imgs {
    height: 3.6rem;
    padding: 0.1rem 0.4rem;
  }
  .pt-list .item-body {
    padding: 0.4rem 0.4rem 0.55rem;
  }
  .pt-list .item-title {
    font-size: 0.36rem;
    line-height: 0.5rem;
  }
  .pt-list .item-title > * {
    display: block;
  }
  .pt-list .item-icon {
    margin: 0.2rem -0.1rem 0 -0.05rem;
  }
  .pt-list .item-icon img {
    width: 0.4rem;
    height: 0.24rem;
  }
}
/* 动态组件-产品中心（首页） */
.index-pro-sticky {
  position: sticky;
  top: 0;
  left: 0;
  height: -webkit-calc(100vh - 4em);
  height: calc(100vh - 4em);
  top: 4em;
  overflow: hidden;
}

.index-pro {
  min-height: 110vh;
}
.index-pro .rocket-content__inner {
  height: 100%;
}
.index-pro .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  left: 0;
  position: relative;
}
.index-pro .item-title-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0 4.5em 0 0;
}
.index-pro .item-title-wrap .title {
  font-size: 2.4em;
  line-height: 1.25em;
  color: #03234B;
  font-weight: 700;
}
.index-pro .item-title-wrap .desc {
  font-size: 1em;
  line-height: 1.6em;
  color: #111;
  font-weight: 400;
  margin-top: 1.25rem;
  width: 11.5rem;
}
.index-pro .item-title-wrap .watch-more {
  margin-top: 3.25rem;
}
.index-pro .pro_item {
  cursor: pointer;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: absolute;
  left: 0%;
  top: 0;
  height: 100%;
}

.pro_item_outer {
  max-width: 300px;
}
.pro_item_outer .item-title {
  font-size: 1.4em;
  line-height: 1em;
  color: #03234B;
  font-weight: 500;
  margin-top: 0.7142857143em;
  text-align: center;
}
.pro_item_outer .watch-more-img {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 0.5em;
}
.pro_item_outer .watch-more-img i {
  background: url(../images/watch-more-product.svg) no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
}
.pro_item_outer .watch-more-img .index {
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #d4d4d4;
  font-weight: bold;
}
.pro_item_outer .item-img {
  padding: 0 0.5em;
}
.pro_item_outer .item-img img {
  width: 100%;
  aspect-ratio: 57/85;
  object-fit: cover;
}

.canClick {
  pointer-events: auto !important;
}
.canClick .watch-more-img {
  opacity: 1;
}

.pro_item_inner {
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
}
.pro_item_inner .inner_wrap {
  height: 100%;
  position: relative;
}

.close_pro-inner {
  position: absolute;
  right: 30px;
  top: 15px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-flex;
  display: flex;
  right: 50%;
  display: none;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.close_pro-inner a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.close_pro-inner i {
  -webkit-mask: url(../images/close_pro_inner.svg) no-repeat center/contain;
          mask: url(../images/close_pro_inner.svg) no-repeat center/contain;
  background-color: #fff;
  width: 26px;
  height: 26px;
}

.pro_inner_img {
  height: 38vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 0.55em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.pro_inner_img img {
  aspect-ratio: 25/18;
  height: 100%;
}

.index_pro-list > .swiper-wrapper > .swiper-slide {
  margin-right: 2.0833333333vw;
}
.index_pro-list .index_pro-list_item {
  position: relative;
}
.index_pro-list .index_pro-list_item.zhankai {
  background: #0074BD;
  overflow: hidden;
}
.index_pro-list .index_pro-list_item.zhankai .pro_item_outer {
  display: none;
}
.index_pro-list .index_pro-list_item.zhankai .pro_item_inner {
  display: block;
}
.index_pro-list .pro_inner_title {
  font-size: 2.1em;
  line-height: 1em;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pro_inner_wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  padding: 5.7291666667vh 0 0 0;
  height: 100%;
}
.pro_inner_wrap .bottom {
  -webkit-flex: 1;
          flex: 1;
  position: relative;
}

.navigation-inner {
  position: absolute;
  left: 50%;
  top: 0;
  width: 56.81%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1.4em;
  z-index: 3;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 0.1em;
}

.swiper-wrap-menu-prev {
  -webkit-mask: url(../images/pro_arrow_prev.svg) no-repeat center/contain;
          mask: url(../images/pro_arrow_prev.svg) no-repeat center/contain;
  background-color: #fff;
  width: 1.4em;
  height: 1.4em;
}
.swiper-wrap-menu-prev.swiper-button-disabled {
  opacity: 0.4;
}

.swiper-wrap-menu-next {
  -webkit-mask: url(../images/pro_arrow_prev.svg) no-repeat center/contain;
          mask: url(../images/pro_arrow_prev.svg) no-repeat center/contain;
  background-color: #fff;
  width: 1.4em;
  height: 1.4em;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.swiper-wrap-menu-next.swiper-button-disabled {
  opacity: 0.4;
}

.swiper-wrap-menu {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  width: 56.81%;
  min-width: 300px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
}
.swiper-wrap-menu .menu-lv2-title {
  font-size: 1.4em;
  line-height: 1em;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 0 1.5em;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}
.swiper-wrap-menu .menu-lv2 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.swiper-wrap-menu .menu-lv2 .swiper-slide {
  height: 2.8em;
}
.swiper-wrap-menu .menu-lv2 .swiper-slide a {
  border: 1px solid rgba(255, 255, 255, 0);
  position: relative;
}
.swiper-wrap-menu .menu-lv2 .swiper-slide a::before {
  background: url(../images/proDuctMore.svg) no-repeat;
  content: "";
  background-size: contain;
  position: absolute;
  right: 1.35em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.8em;
  height: 0.8em;
  opacity: 0;
}
.swiper-wrap-menu .menu-lv2 .swiper-slide.swiper-slide-active a {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid white;
}
.swiper-wrap-menu .menu-lv2 .swiper-slide.swiper-slide-active a::before {
  opacity: 1;
}
.swiper-wrap-menu .menu-lv2 .swiper-slide.swiper-slide-active span {
  font-size: 1.1em;
  line-height: 2.1818181818em;
  color: white;
  font-weight: 700;
}
.swiper-wrap-menu .menu-lv2 a {
  display: -webkit-flex;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.swiper-wrap-menu .menu-lv2 span {
  font-size: 1em;
  line-height: 2.4em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.swiper-wrap-menu .menu-lv2-slide {
  -webkit-flex-direction: column;
          flex-direction: column;
  display: -webkit-flex;
  display: flex;
}
.swiper-wrap-menu .flex-swiper-auto {
  -webkit-flex: 1;
          flex: 1;
  position: relative;
}

@media (min-width: 992px) {
  .index-pro-sticky.open_pro .pro-prev, .index-pro-sticky.open_pro .pro-next {
    opacity: 0;
    pointer-events: none;
  }
  .index-pro .pro_item {
    width: 100%;
  }
  .pro_item_inner {
    width: 100%;
  }
  .index-pro .item-title-wrap {
    z-index: 3;
  }
  .index-pro .inner {
    overflow: hidden;
  }
  .index-pro .inner::after {
    content: "";
    width: 100vw;
    right: -webkit-calc(100% - 16.5em);
    right: calc(100% - 16.5em);
    height: 100%;
    background: #fff;
    z-index: 2;
    position: absolute;
  }
  .index_pro-box {
    width: -webkit-calc(100% - 16.5em);
    width: calc(100% - 16.5em);
    position: relative;
    height: 100%;
    -webkit-transition: left 0.8s;
    transition: left 0.8s;
  }
  .index_pro-box .pro-prev {
    position: absolute;
    left: -1.65rem;
    top: 50%;
    -webkit-transform: translateY(-webkit-calc(50% - 10vh));
            transform: translateY(calc(50% - 10vh));
    display: -webkit-flex;
    display: flex;
    z-index: 3;
  }
  .index_pro-box .pro-prev .icon {
    -webkit-mask: url(../images/arrow-right.svg) no-repeat center/contain;
            mask: url(../images/arrow-right.svg) no-repeat center/contain;
    background-color: #767676;
    width: 1.25em;
    height: 2.3em;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .index_pro-box .pro-prev.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
  }
  .index_pro-box .pro-prev:not(.swiper-button-disabled):hover .icon {
    background-color: #0075CC;
  }
  .index_pro-box .pro-next {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-webkit-calc(50% - 10vh));
            transform: translateY(calc(50% - 10vh));
    display: -webkit-flex;
    display: flex;
    z-index: 3;
  }
  .index_pro-box .pro-next .icon {
    -webkit-mask: url(../images/arrow-right.svg) no-repeat center/contain;
            mask: url(../images/arrow-right.svg) no-repeat center/contain;
    background-color: #767676;
    width: 1.25em;
    height: 2.3em;
  }
  .index_pro-box .pro-next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
  }
  .index_pro-box .pro-next:not(.swiper-button-disabled):hover .icon {
    background-color: #0075CC;
  }
  .index_pro-list {
    width: 100%;
  }
  .index-pro .item-title-wrap {
    height: min(70vh, 660px);
    -webkit-justify-content: space-between;
            justify-content: space-between;
    padding-bottom: 2.5rem;
  }
  .index-pro .item-title-wrap .watch-more {
    width: 12rem;
  }
  .pro_item_outer {
    height: min(70vh, 660px);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .pro_item_outer .item-title.web {
    margin-top: 2.5rem;
    font-weight: bold;
    color: var(--mt-global-color-black-dark);
    font-size: 1.2rem;
  }
  .pro_item_outer .item-img img {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    -webkit-transition: transform 0.4s;
  }
  .index_pro-list {
    height: 100%;
  }
  .index_pro-list > .swiper-wrapper {
    -webkit-align-items: center;
            align-items: center;
  }
  .index_pro-list > .swiper-wrapper > .swiper-slide {
    width: 12.9166666667vw;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    margin: 0;
  }
  .index_pro-list > .swiper-wrapper > .swiper-slide.shouqi {
    pointer-events: none;
    opacity: 0.3;
  }
  .index_pro-list > .swiper-wrapper > .swiper-slide::before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    width: 1px;
    background: #EEEEEE;
    left: 0;
  }
  .index_pro-list > .swiper-wrapper > .swiper-slide:hover .pro_item_outer .item-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .index_pro-list > .swiper-wrapper > .swiper-slide:hover .pro_item_outer .item-title {
    color: var(--mt-global-color-blue);
  }
}
@media (max-width: 991.98px) {
  .app_pro_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .index-pro-sticky {
    overflow: hidden;
    top: 0;
  }
  .index_pro-list > .swiper-wrapper > .swiper-slide {
    margin-right: 0;
  }
  .pro_item_outer .item-title {
    font-size: 0.38rem;
    line-height: 1;
    margin-top: 0;
  }
  .pro_item_outer .item-img {
    padding: 0;
  }
  .pro_item_outer .watch-more-img {
    opacity: 1;
    margin-bottom: 0.09rem;
  }
  .pro_item_outer .watch-more-img i {
    width: 0.54rem;
    height: 0.54rem;
  }
  .pro_item_outer .watch-more-img .index {
    font-size: 0.6rem;
    line-height: 0.6rem;
  }
  .index_pro-list {
    width: 5.8rem;
    margin-left: 0.85rem;
    margin-right: 0.85rem;
    padding-top: 1.27rem;
  }
  .index_pro-list.isone .yd_pagination {
    display: none;
  }
  .index-pro {
    min-height: initial;
  }
  .index-pro .pro_item {
    position: relative;
    height: initial;
    pointer-events: auto;
  }
  .index-pro .item-title-wrap {
    padding: 0;
  }
  .index-pro .item-title-wrap .watch-more {
    margin-top: 0.6rem;
  }
  .index-pro .item-title-wrap .title {
    font-size: 0.6rem;
    line-height: 0.75rem;
  }
  .index-pro .item-title-wrap .desc {
    width: 100%;
    font-size: 0.32rem;
    line-height: 0.48rem;
    color: #111;
    margin-top: 0.2rem;
  }
  .index-pro .inner {
    padding: 1.3rem 0;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .index-pro .rocket-content__inner {
    height: initial;
  }
  .index-pro-sticky {
    position: relative;
    height: initial;
  }
}
.layout-element .index-pro-sticky {
  position: relative;
}

@media screen and (max-height: 780px) and (min-width: 992px) {
  .swiper-wrap-menu .menu-lv2-title {
    font-size: 1.3em;
    margin-bottom: 1rem;
  }
  .navigation-inner {
    height: 1.3em;
  }
  .index_pro-list .pro_inner_title {
    font-size: 2em;
  }
  .pro_inner_img {
    height: 30vh;
  }
}
/* 动态组件-解决方案（首页） */
.index-solution {
  min-height: 200vh;
}
.index-solution .sticky-cen {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: -webkit-calc(100vh - 4em);
  height: calc(100vh - 4em);
  top: 4em;
}
.index-solution .re-box {
  position: relative;
  height: 100%;
  background: #EEF1F4;
}

.index-solution-img {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
.index-solution-img .item-img-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.index-solution-img .item-img-wrap:nth-child(1) {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.index-solution-img .item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.index-solution-list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
}
.index-solution-list .inner {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}
.index-solution-list .ab-box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.index-solution-list-item .num-page {
  margin-bottom: 2rem;
}
.index-solution-list-item .item-title {
  font-size: 2.4em;
  line-height: 1.4166666667em;
  color: #03234B;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.index-solution-list-item .item-desc {
  min-height: 8.4rem;
  font-size: 1em;
  line-height: 1.6em;
  color: #111;
  font-weight: 400;
}
.index-solution-list-item .current-num {
  font-size: 2.4em;
  line-height: 1em;
  color: #03234B;
  font-weight: 700;
}
.index-solution-list-item .watch-more {
  margin-top: 2.25rem;
}
.index-solution-list-item .total-num {
  font-size: 0.8em;
  line-height: 1.25em;
  color: #60666D;
  font-weight: 500;
}
.index-solution-list-item .total-num::before {
  content: "/";
  color: #262626;
  font-weight: 500;
}

@media (min-width: 1921px) {
  .index-solution .lg-inner {
    width: 100vw;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .index-solution-list .ab-box {
    padding-left: 6.25vw;
    width: 100%;
    pointer-events: none;
  }
  .index-solution-list .cntd-btn-fill-blue {
    pointer-events: auto;
  }
  .index-solution-list .inner {
    padding-left: 6.25vw;
    background: #EEF1F4;
  }
  .index-solution-img {
    will-change: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
  }
  .index-solution-list .inner {
    will-change: left;
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: 500ms, 200ms;
            transition-duration: 500ms, 200ms;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    left: 39.4375vw;
  }
  body.star-index-solution .index-solution-img {
    -webkit-transform: translateX(-20.4375vw);
            transform: translateX(-20.4375vw);
  }
  body.star-index-solution .index-solution-list .inner {
    left: 0px;
  }
  #index-solution_gsap.active .index-solution-img {
    width: 61.71875vw;
    transition: width 0.5s 0.2s;
    -webkit-transition: width 0.5s 0.2s;
  }
}
@media (max-width: 991.98px) {
  .index-solution-list-item .watch-more {
    margin-top: 0.82rem;
  }
  .index-solution-list-item .item-body {
    padding: 0.95rem 0.4rem 1.03rem 0.4rem;
    background: #EEF1F4;
  }
  .index-solution-list-item .num-page {
    margin-bottom: 0.55rem;
  }
  .index-solution-list-item .item-desc {
    font-size: 0.32rem;
    line-height: 0.54rem;
    min-height: 0;
  }
  .index-solution-list-item .current-num {
    font-size: 0.52rem;
    line-height: 0.52rem;
  }
  .index-solution-list-item .item-title {
    font-size: 0.6rem;
    line-height: 0.75rem;
    margin-bottom: 0.3rem;
  }
  .index-solution-list-item .total-num {
    font-size: 0.26rem;
    line-height: 0.2rem;
  }
  .index-solution-list-item .total-num::before {
    font-size: 0.26rem;
    line-height: 0.2rem;
  }
  .index-solution {
    min-height: 100vh;
  }
  .index-solution .sticky-cen {
    position: relative;
    height: auto;
    overflow: hidden;
    top: 0;
  }
  .index-solution-list {
    position: relative;
    margin: 0 -0.4rem !important;
    overflow: hidden;
    width: auto;
  }
  .index-solution-list .ab-box {
    position: relative;
  }
  .index-solution-list .inner {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .index-solution-list .item-img {
    position: relative;
    padding-top: 80%;
  }
  .index-solution-list .item-img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.layout-element .index-solution {
  min-height: 100vh;
}
.layout-element .index-solution .sticky-cen {
  position: relative;
}
.layout-element .index-solution-img {
  width: 61.7188vw;
}
.layout-element .index-solution-list .inner {
  margin-left: -webkit-calc(-72.5px + 67.9688vw);
  margin-left: calc(-72.5px + 67.9688vw);
}
.layout-element .index-solution-list .lg-inner {
  height: 100%;
}
.layout-element .index-solution-list .ab-box:not(:nth-child(1)) {
  opacity: 0;
}

/* 动态组件-解决方案-定制化服务 */
.solution_serve .sticky-cen {
  position: sticky;
  left: 0;
  top: 7.9em;
  height: -webkit-calc(100vh - 4em - 3.9em);
  height: calc(100vh - 4em - 3.9em);
}
.solution_serve .custom-img {
  position: relative;
}
.solution_serve .rocket-content__inner, .solution_serve .custom-img {
  height: 100%;
}
.solution_serve .rocket-content__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.solution_serve .re-box {
  padding-top: 0em;
  height: 100%;
  max-height: 650px;
  width: 100%;
}
.solution_serve .item-body {
  padding: 3.75em 2.5em;
}
.solution_serve .item-title {
  font-size: 1.9em;
  line-height: 1em;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5263157895em;
}
.solution_serve .item-desc {
  font-size: 1.2em;
  line-height: 1.4166666667em;
  color: #fff;
  font-weight: 400;
}
.solution_serve .custom-img-item {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: translateY(-webkit-calc(100% + 65px));
          transform: translateY(calc(100% + 65px));
}
.solution_serve .custom-img-item:nth-child(1) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.solution_serve .item-box {
  position: relative;
  height: 100%;
}
.solution_serve .item-body {
  position: absolute;
  top: 0;
  left: 0;
}
.solution_serve .item-img {
  position: relative;
  height: 100%;
}
.solution_serve .item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991.98px) {
  .solution_serve {
    margin: 0;
  }
  .solution_serve .sticky-cen {
    top: 2.18rem;
    height: 9.38rem;
  }
  .solution_serve .item-img::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
  .solution_serve .re-box {
    padding: 0rem 0;
    max-height: 100%;
    height: 7.2rem;
  }
  .solution_serve .item-body {
    padding: 0.9rem 0.4rem;
  }
  .solution_serve .item-title {
    font-size: 0.4rem;
    line-height: 0.4rem;
    margin-bottom: 0.3rem;
  }
  .solution_serve .item-desc {
    font-size: 0.32rem;
    line-height: 0.54rem;
  }
}
.layout-element .solution_serve .custom-img-item {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 动态组件-关于我们-领导致辞 */
.chairman-message-wrap {
  min-height: 120vh;
}
.chairman-message-wrap .sticky-box {
  position: sticky;
  top: 4em;
  left: 0;
  height: -webkit-calc(100vh - 4em);
  height: calc(100vh - 4em);
}
.chairman-message-wrap .v-center {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  height: 100%;
}
.chairman-message-wrap .re-box {
  height: 85.4166666667vh;
  position: relative;
  overflow: hidden;
}
.chairman-message-wrap .left-door {
  position: absolute;
  left: 0;
  top: 0;
  background: #03234B;
  width: 100%;
  z-index: 2;
  height: 100%;
}
.chairman-message-wrap .right-door {
  position: absolute;
  right: 0;
  top: 0;
  background: #03234B;
  width: 100%;
  z-index: 2;
  height: 100%;
}
.chairman-message-wrap .door-up-text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.chairman-message-wrap .door-up-text .left-door-text {
  font-size: 4em;
  line-height: 1em;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 50%;
  margin-top: -4.25rem;
  width: 100%;
}
.chairman-message-wrap .door-up-text .left-door-text .next-text {
  visibility: hidden;
}
.chairman-message-wrap .door-up-text .right-door-text {
  font-size: 4em;
  line-height: 1em;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 50%;
  margin-top: 0.25rem;
  width: 100%;
}
.chairman-message-wrap .door-up-text .right-door-text .pre-text {
  visibility: hidden;
}
.chairman-message-wrap .door-up-text .text-class {
  display: -webkit-flex;
  display: flex;
  gap: 0 1rem;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0 0 0 4.3229166667vw;
}
.chairman-message-wrap .text-wraps {
  position: relative;
  height: 100%;
  width: 100%;
}

.chairman-message-img-wrap {
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  background: #03234B;
}
.chairman-message-img-wrap .img-up-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
}
.chairman-message-img-wrap .inner-text {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.chairman-message-img-wrap .chair-message-foot {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 44.5rem;
  padding-top: 1.9rem;
}
.chairman-message-img-wrap .chair-message-foot span {
  font-size: 1em;
  line-height: 1.5em;
  color: #fff;
  font-weight: 500;
}
.chairman-message-img-wrap .chair-message-desc {
  max-width: 44.5rem;
  font-size: 2em;
  line-height: 1.35em;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.chairman-message-img-wrap .chair-message-desc::before {
  position: absolute;
  content: "";
  background: url(../images/dot.svg) no-repeat;
  background-size: contain;
  left: 0;
  bottom: -webkit-calc(100% + 1.875vw);
  bottom: calc(100% + 1.875vw);
  width: 2.3958333333vw;
  height: 1.875vw;
}
.chairman-message-img-wrap .chair-message-desc::after {
  position: absolute;
  content: "";
  background: url(../images/dot.svg) no-repeat;
  background-size: contain;
  right: 0;
  top: -webkit-calc(100% - 0.7vw);
  top: calc(100% - 0.7vw);
  width: 2.3958333333vw;
  height: 1.875vw;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.chairman-message-img-wrap .imgwrap {
  position: relative;
  height: 70vh;
  width: 0vw;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}
.chairman-message-img-wrap .imgwrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 992px) {
  .chairman-message-wrap {
    margin-bottom: 6rem;
  }
}
@media (max-width: 991.98px) {
  .chairman-message-wrap {
    margin-bottom: 1.2rem;
  }
  .chairman-message-wrap .v-center {
    height: 100%;
  }
  .chairman-message-wrap .sticky-box {
    top: 1.08rem;
    height: -webkit-calc(100vh - 1.08rem);
    height: calc(100vh - 1.08rem);
  }
  .chairman-message-wrap .chair-message-desc {
    max-width: 100%;
    font-size: 0.52rem;
    line-height: 0.65rem;
    width: 5.2rem;
  }
  .chairman-message-wrap .chair-message-desc::before {
    width: 0.69rem;
    height: 0.54rem;
    bottom: -webkit-calc(100% + 0.45rem);
    bottom: calc(100% + 0.45rem);
  }
  .chairman-message-wrap .chair-message-desc::after {
    width: 0.69rem;
    height: 0.54rem;
    top: -webkit-calc(100% + 0.45rem);
    top: calc(100% + 0.45rem);
  }
  .chairman-message-wrap .chair-message-foot {
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding-top: 0.99rem;
    max-width: 100%;
    width: 5.2rem;
  }
  .chairman-message-wrap .door-up-text .right-door-text {
    font-size: 0.96rem;
    line-height: 1.1rem;
    margin-bottom: 0rem;
    margin-top: 0.46rem;
  }
  .chairman-message-wrap .door-up-text .right-door-text .pre-text {
    display: none;
  }
  .chairman-message-wrap .door-up-text .left-door-text {
    font-size: 0.96rem;
    line-height: 1.1rem;
    margin-top: -1.12rem;
  }
  .chairman-message-wrap .door-up-text .left-door-text .next-text {
    display: none;
  }
  .chairman-message-wrap .door-up-text .text-class {
    padding: 0 0.68rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .chairman-message-wrap .re-box {
    height: -webkit-calc(100vh - 1.08rem);
    height: calc(100vh - 1.08rem);
  }
  .chairman-message-wrap .rocket-content__inner {
    padding: 0;
  }
}
/* 动态组件-关于我们-企业文化 */
.company-vision-wrap {
  padding: 6em 0 7.1em 0;
}
.company-vision-wrap .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 0 5.2083333333vw;
}
.company-vision-wrap .sticky-box {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  padding-bottom: 0em;
}
.company-vision-wrap .sticky-box .rocket-content__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.company-vision-wrap .inner-sticky {
  position: relative;
  width: 37.5vw;
}

.company-vision-img {
  position: relative;
  padding-top: 62.5%;
  height: 0;
  overflow: hidden;
}

.company-vision-img-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.company-vision-img-item:nth-child(1) {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.company-vision-img-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.company-vision_l {
  padding-top: 5.9em;
}

.company-list-item {
  margin-bottom: 12em;
  opacity: 0;
}
.company-list-item:last-child {
  margin-bottom: 6em;
}
.company-list-item .item-title {
  font-size: 1.9em;
  line-height: 1em;
  color: #03234B;
  font-weight: 700;
}
.company-list-item .item-desc {
  font-size: 1em;
  line-height: 1.7em;
  color: #444;
  font-weight: 400;
  margin-top: 1.5rem;
}

@media (max-width: 991.98px) {
  .company-list-item {
    opacity: 1;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0.75rem;
    gap: 0 0.55rem;
  }
  .company-list-item .item-title {
    font-size: 0.36rem;
    line-height: 1em;
  }
  .company-list-item .item-desc {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin-top: 0.2rem;
  }
  .company-list-item:last-child {
    margin-bottom: 0;
  }
  .company-list-item .inner-list-r {
    width: 2.94rem;
  }
  .company-list-item .inner-list-l {
    -webkit-flex: 1;
            flex: 1;
  }
  .company-list-item .imgwrap {
    padding-top: 76.1904761905%;
    height: 0;
    position: relative;
  }
  .company-list-item .imgwrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .company-vision-wrap {
    padding: 1rem 0 1.2rem 0;
  }
  .company-vision-wrap .inner {
    gap: 0;
  }
  .company-vision_l {
    padding-top: 0;
  }
}
.layout-element .company-list-item {
  opacity: 1;
}

/* 动态组件-招聘频道页-趣事轮播 */
.str_wrap {
  overflow: hidden;
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  position: relative;
}

.str_move {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  cursor: move;
}

.str_move_clone {
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 100%;
  top: 0;
}

.str_vertical .str_move_clone {
  left: 0;
  top: 100%;
}

.str_down .str_move_clone {
  left: 0;
  bottom: 100%;
}

.str_vertical .str_move,
.str_down .str_move {
  white-space: normal;
  width: 100%;
}

.str_static .str_move,
.no_drag .str_move,
.noStop .str_move {
  cursor: inherit;
}

.str_wrap img {
  max-width: none !important;
}

.liMarqueewrap {
  width: 100%;
}

.liMarqueewrap .list-item {
  display: inline-block;
  overflow: hidden;
  margin-right: 3em;
}

.fun-carousel-wrap .item-img {
  height: 22.5rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
.fun-carousel-wrap .imgwrap img {
  width: 100%;
}

@media (max-width: 991.98px) {
  .fun-carousel-wrap .item-img {
    height: 4.5rem;
  }
  .liMarqueewrap .list-item {
    margin-right: 0.4rem;
  }
}
.layout-element .liMarqueewrap {
  display: -webkit-flex;
  display: flex;
}

/* 动态组件-首页-新闻中心*/
.index_news-wrap {
  padding: 8.65em 0 6.5em;
}
.index_news-wrap.isone .cd-public-button-prev02-wrap {
  display: none;
}
.index_news-wrap .inner {
  display: -webkit-flex;
  display: flex;
  gap: 0 9.1145833333vw;
}
.index_news-wrap .title {
  font-size: 2.4em;
  line-height: 1.25em;
  color: #03234B;
  font-weight: 700;
}
.index_news-wrap .desc {
  font-size: 1em;
  line-height: 1.6em;
  margin-top: 1.75rem;
  color: #111;
}
.index_news-wrap .watch-all-news {
  margin-top: 3.25rem;
}
.index_news-wrap .item-title {
  font-size: 1.2em;
  line-height: 1.4166666667em;
  color: #03234B;
  font-weight: 500;
}
.index_news-wrap .item-message {
  display: -webkit-flex;
  display: flex;
  gap: 0 1.9em;
  padding: 0.8em 0 0 0;
}
.index_news-wrap .item-message-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 0 0.25em;
}
.index_news-wrap .item-message-item span {
  font-size: 0.8em;
  line-height: 0.8em;
  color: #666;
}
.index_news-wrap i.pos_icon {
  width: 0.9em;
  height: 0.9em;
  -webkit-mask: url(../images/view.svg) no-repeat center/contain;
          mask: url(../images/view.svg) no-repeat center/contain;
  background-color: #121212;
}
.index_news-wrap i.time_icon {
  width: 1em;
  height: 1em;
  background: url(../images/time.svg) no-repeat;
  background-size: contain;
}
.index_news-wrap .item-tag {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 1.25em;
}
.index_news-wrap .item-tag span {
  font-size: 0.9em;
  line-height: 1em;
  color: #111;
  font-weight: 500;
}
.index_news-wrap .inner_l {
  -webkit-flex: 1;
          flex: 1;
}
.index_news-wrap .inner_r {
  width: 62.8571428571%;
}

.index_news_wrap {
  overflow: hidden;
}
.index_news_wrap .swiper-slide {
  width: 420px;
  margin-right: 40px;
}
.index_news_wrap .inner-slide {
  display: block;
}
.index_news_wrap .item-img {
  position: relative;
  padding-top: 100%;
  height: 0;
  overflow: hidden;
}
.index_news_wrap .item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.index_news_wrap .item-body {
  padding: 1.2em 0 0 0;
}

@media (min-width: 992px) {
  .index_news_wrap .inner-slide:hover {
    cursor: pointer;
  }
  .index_news_wrap .inner-slide:hover .item-title {
    color: #0075CC;
  }
  .index_news_wrap .inner-slide:hover .item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (max-width: 991.98px) {
  .index_news-wrap {
    padding: 1.5rem 0 1.4rem;
  }
  .index_news-wrap .cd-public-button-prev02-wrap {
    width: 5.68rem;
  }
  .index_news-wrap .index_news_wrap {
    margin: 0 -0.4rem;
    padding: 0 0.4rem;
  }
  .index_news-wrap .item-title {
    font-size: 0.36rem;
    line-height: 0.5rem;
  }
  .index_news-wrap .item-body {
    padding: 0.4rem 0rem 0 0;
  }
  .index_news-wrap i.time_icon {
    width: 0.36rem;
    height: 0.36rem;
  }
  .index_news-wrap i.pos_icon {
    width: 0.28rem;
    height: 0.28rem;
  }
  .index_news-wrap .item-message-item {
    gap: 0 0.1rem;
  }
  .index_news-wrap .item-message-item span {
    font-size: 0.28rem;
    line-height: 0.28rem;
  }
  .index_news-wrap .item-message {
    padding: 0.32rem 0 0 0;
    gap: 0 0.35rem;
  }
  .index_news-wrap .item-tag {
    margin-bottom: 0.4rem;
  }
  .index_news-wrap .item-tag span {
    font-size: 0.26rem;
    line-height: 0.26rem;
  }
  .index_news-wrap .inner_r {
    width: 100%;
  }
  .index_news-wrap .watch-all-news {
    margin-top: 0.6rem;
  }
  .index_news-wrap .title {
    font-size: 0.6rem;
    line-height: 0.75rem;
  }
  .index_news-wrap .desc {
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin-top: 0.2rem;
  }
  .index_news-wrap .inner {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 1.1rem 0;
  }
}
/* 动态组件-关于我们-发展历程*/
.company-history-wrap {
  min-height: 120vh;
}
.company-history-wrap .sticky-box {
  position: sticky;
  top: 0;
  left: 0;
  top: 4em;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  padding: 3.75rem 0 8.4rem;
}
.company-history-wrap .title {
  font-size: 2.4em;
  line-height: 1em;
  color: #03234B;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.company-history-wrap .desc {
  font-size: 1em;
  line-height: 1em;
  color: #111;
  font-weight: 400;
  margin-bottom: 2.15rem;
}

.history-wrap-swiper .imgwrap {
  position: relative;
  padding-top: 100%;
  height: 0;
  overflow: hidden;
}
.history-wrap-swiper .imgwrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.history-wrap-swiper .imgwrap span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 5.5rem;
  line-height: 7.05rem;
  color: #fff;
  font-weight: 700;
}
.history-wrap-swiper .item-title {
  font-size: 1.6em;
  line-height: 1.1875em;
  color: #03234B;
  font-weight: 700;
}
.history-wrap-swiper .item-desc {
  font-size: 0.9em;
  line-height: 1.3333333333em;
  color: #444;
  font-weight: 400;
  margin-top: 0.25rem;
}
.history-wrap-swiper .item-body {
  padding: 1.95em 0 0 0;
}

@media (min-width: 992px) {
  .history-wrap-swiper .swiper-slide {
    width: 26.736%;
    margin-right: 90px;
  }
}
@media (max-width: 991.98px) {
  .history-wrap-swiper .item-title {
    font-size: 0.36rem;
    line-height: 0.56rem;
  }
  .history-wrap-swiper .item-body {
    padding: 0.2rem 0 0 0;
  }
  .history-wrap-swiper .item-desc {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin-top: 0.1rem;
  }
  .company-history-wrap {
    min-height: auto;
    overflow: hidden;
    padding: 1.2rem 0 1.4rem;
  }
  .company-history-wrap .imgwrap {
    padding-top: 56.25%;
  }
  .company-history-wrap .imgwrap span {
    font-size: 1.4rem;
    line-height: 1.64rem;
  }
  .company-history-wrap .title {
    font-size: 0.52rem;
    line-height: 0.65rem;
    margin-bottom: 0.2rem;
  }
  .company-history-wrap .desc {
    font-size: 0.32rem;
    line-height: 0.54rem;
    margin-bottom: 0.6rem;
  }
  .company-history-wrap .sticky-box {
    padding: 0;
    position: static;
    height: initial;
    display: block;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .history-wrap-swiper .imgwrap span {
    font-size: 5rem;
  }
}
/* 自定义样式-产品搜索页 */
.p-product-search .main-box {
  overflow: visible;
}

.pt-search-mainbox {
  padding: 4rem 0 6rem;
}

.psearch-column-title {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  font-size: 3.2rem;
  line-height: 1.9rem;
  color: #107ac0;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.psearch-column-title > *:not(:last-child)::after {
  content: "/";
  font-size: 2.4rem;
  line-height: 1em;
  margin: 0 10px;
  color: var(--mt-global-color-black-dark);
}
.psearch-column-title .current {
  font-size: 2.4rem;
  line-height: 1em;
  color: var(--mt-global-color-blue-light);
}

.psearch-input {
  width: 45rem;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 20px 0 11px;
  border-bottom: solid 2px #2E3033;
}
.psearch-input .inpt {
  width: 100%;
  height: 1.8rem;
  display: block;
  position: relative;
  padding: 0 2.8rem 0 0.5rem;
  font-size: 1rem;
  line-height: 1.8rem;
  background: transparent;
  color: var(--mt-global-color-black-dark);
  font-weight: 500;
}
.psearch-input .btn-sch {
  width: 1.8rem;
  height: 1.8rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
  color: #4D4D4D;
}
.psearch-input .bi {
  -webkit-flex: none;
          flex: none;
  width: 1.25rem;
  height: 1.25rem;
  float: right;
  display: block;
  background-color: currentColor;
  -webkit-mask: url("../images/search.svg") no-repeat center/contain;
  mask: url("../images/search.svg") no-repeat center/contain;
}

.ptsch-filt-sect {
  margin: 3.3rem 0 0;
  position: relative;
}

.ptsch-filt-lvtit {
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: bold;
  color: var(--mt-global-color-blue-dark);
  margin-bottom: 1.25rem;
}

.ptsch-filt-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 15% 16% 18.4% 1fr;
  border-top: solid 1px #D1D2D4;
  border-bottom: solid 1px #D1D2D4;
}

.ptsch-filt-column {
  min-height: 28.5rem;
  padding: 2rem 1.25rem 2rem 1.5rem;
  border-right: solid 1px #D1D2D4;
  color: var(--mt-global-color-black-dark);
}
.ptsch-filt-column .navlv1 {
  font-size: 1rem;
  line-height: 1em;
  font-weight: bold;
  color: inherit;
}

.ptsch-filtcol-other {
  padding: 2rem 6.2rem 2rem 2.5rem;
  border-right: none;
}

.ptsch-filt-typeid {
  display: none !important;
}

.pt-filtcol-list {
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: 500;
}
.pt-filtcol-list > .navitem {
  margin-bottom: 1.25rem;
}
.pt-filtcol-list > .navitem:last-child {
  margin-bottom: 0;
}
.pt-filtcol-list .trigger {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.pt-filtcol-list .bi-arrow {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
  background-color: currentColor;
  -webkit-mask: url("../images/nav-right.svg") no-repeat center center/contain;
  mask: url("../images/nav-right.svg") no-repeat center center/contain;
  -webkit-flex: none;
          flex: none;
  opacity: 0;
  visibility: hidden;
  margin-left: 1rem;
}

.ptsch-filt-handle {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.ptsch-filt-handle .tablist {
  width: 6.6rem;
  height: 1.5rem;
  display: -webkit-flex;
  display: flex;
  position: relative;
  background-color: #EEEFF0;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  line-height: 1em;
  color: #666666;
  font-weight: bold;
}
.ptsch-filt-handle .tabitem {
  -webkit-flex: 1;
          flex: 1;
  border-radius: inherit;
  cursor: pointer;
  font-size: 1em;
  line-height: 1em;
  font-weight: bold;
  color: #999999;
  position: relative;
}
.ptsch-filt-handle .tabitem::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: transparent;
  transition: all 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -webkit-transition: all 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  pointer-events: none;
}
.ptsch-filt-handle .tabitem > * {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  z-index: 5;
}
.ptsch-filt-handle .tabitem:first-child::before {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
.ptsch-filt-handle .tabitem:last-child::before {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}
.ptsch-filt-handle .tabitem.active {
  color: #fff;
}
.ptsch-filt-handle .tabitem.active::before {
  background-color: var(--mt-global-color-blue-light);
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.ptsch-filt-panel {
  display: none;
}
.ptsch-filt-panel.active {
  display: block;
}

.ptsch-filt-panel_series {
  padding-top: 1.75rem;
}
.ptsch-filt-panel_series .pt-filtcol-list {
  max-width: 100%;
}
.ptsch-filt-panel_series .pt-filtcol-list .navlvt {
  display: -webkit-flex;
  display: flex;
}
.ptsch-filt-panel_series .pt-filtcol-list .trigger {
  min-width: min(14.5rem, 100%);
  max-width: 100%;
}

.ptsch-filt-panel_spec {
  padding-top: 2.4rem;
}
.ptsch-filt-panel_spec .ptsepc-filt-grid {
  position: relative;
}
.ptsch-filt-panel_spec .ptsepc-filt-grid::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #D1D2D4;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
.ptsch-filt-panel_spec .ptsepc-filt-grid.grid-col2 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -2.5rem;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.ptsch-filt-panel_spec .ptsepc-filt-grid.grid-col2 > * {
  width: 50%;
  display: grid;
  grid-gap: 1.5rem 0;
  padding: 0 2.5rem;
}
.ptsch-filt-panel_spec .ptsepc-filt-grid.grid-col2 .ptspec-range-grid {
  grid-template-columns: repeat(1, 1fr);
}
.ptsch-filt-panel_spec .form-checkbox-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.25rem 2.7rem;
}
.ptsch-filt-panel_spec .form-range-box .range-barbox {
  height: 0.8rem;
}
.ptsch-filt-panel_spec .form-range-box .range-barbox .layui-slider-wrap-btn {
  width: 0.8rem;
  height: 0.8rem;
}
.ptsch-filt-panel_spec .ptspec-check-grid .control-label {
  margin: 0 0 1.25rem;
}
.ptsch-filt-panel_spec .ptspec-range-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem 5rem;
}
.ptsch-filt-panel_spec .ptspec-range-grid .control-label {
  margin: 0 0 0.75rem;
}

.ptsch-filt-reset {
  width: 4rem;
  height: 1.5rem;
  display: none;
  position: relative;
  border-radius: 0.75rem;
  background-color: #2E3033;
  color: #fff;
  cursor: pointer;
  font-size: 0.7rem;
  line-height: 1em;
  font-weight: bold;
}
.ptsch-filt-reset > * {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
}
.ptsch-filt-reset .bi {
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  -webkit-flex: none;
          flex: none;
  margin: 0 4px 0 0;
  background-color: currentColor;
  -webkit-mask: url("../images/refresh.svg") no-repeat center center/contain;
  mask: url("../images/refresh.svg") no-repeat center center/contain;
}

.ptsch-result-box {
  margin: 3.5rem 0 0;
}

.ptsch-result-num {
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: bold;
  margin: 0 0 1.5rem;
}

.ptsch-result-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
  color: var(--mt-global-color-black-dark);
}
.ptsch-result-list .item-box {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  border: solid 1px #E0E0E0;
}
.ptsch-result-list .item-topbox {
  padding: 1rem 1.2rem 2.3rem;
  position: relative;
  overflow: hidden;
  border-bottom: solid 1px #E0E0E0;
}
.ptsch-result-list .imgs {
  width: 100%;
  padding: 100% 0 0;
  overflow: hidden;
  display: block;
  position: relative;
}
.ptsch-result-list .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0, 0.55, 0.45, 1);
  -webkit-transition: all 0.5s cubic-bezier(0, 0.55, 0.45, 1);
}
.ptsch-result-list .checkitem {
  width: 100%;
  padding: 0 1rem;
  font-size: 0.8rem;
  line-height: 0.9rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
}
.ptsch-result-list .checklabel {
  padding: 0.6rem 0 0.8rem;
}
.ptsch-result-list .check-icon {
  border-color: #999;
  margin: 0 0.5em 0 0;
}
.ptsch-result-list .item-botbox {
  width: 100%;
  position: relative;
  padding: 0.9rem 1rem 1.25rem;
}
.ptsch-result-list .item-title {
  font-size: 1rem;
  line-height: 1.25em;
  font-weight: bold;
}
.ptsch-result-list .item-title > * {
  display: -webkit-flex;
  display: flex;
}
.ptsch-result-list .item-icon {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0.75rem -0.25rem 0;
}
.ptsch-result-list .item-icon img {
  width: 1.5rem;
  height: 0.7rem;
  display: block;
  object-fit: contain;
  object-position: center center;
  opacity: 0.7;
}

.ptsch-result-nodata {
  display: none;
  padding: 8rem 0;
  margin: 3rem 0 0;
  border-top: solid 1px #D1D2D4;
  border-bottom: solid 1px #D1D2D4;
}
.ptsch-result-nodata .gnull-tips {
  margin: 0 auto;
}

.ptsch-spec-mhead {
  width: 100%;
  background-color: #fff;
  padding: 0 0.9rem 0 0;
  position: relative;
  font-size: 0.28rem;
  line-height: 1em;
  color: #666;
}

.ptsch-spec-mswip {
  width: 100%;
  overflow: hidden;
  position: relative;
  font-size: 0.3rem;
  line-height: 1em;
}
.ptsch-spec-mswip .swiper-slide {
  width: auto;
  white-space: nowrap;
}
.ptsch-spec-mswip .trigger {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  padding: 0.32rem 0;
}
.ptsch-spec-mswip .trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  -webkit-mask: url("../images/nav-down.svg") no-repeat center/contain;
  mask: url("../images/nav-down.svg") no-repeat center/contain;
  background-color: currentColor;
  margin: 0 0 0 0.1rem;
}

.ptsch-spec-btnall {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  text-align: right;
  font-weight: 500;
  background-color: #fff;
  padding: 0 0 0 0.15rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}
.ptsch-spec-btnall::before {
  content: "";
  display: block;
  width: 1px;
  height: 0.28rem;
  background-color: #DBDCDE;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.modal-spec-box {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-spec-box.fade .modal-content {
  transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.modal-spec-box.show .modal-content {
  transform: none;
  -webkit-transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-spec-box .modal-dialog {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.modal-spec-box .modal-content {
  width: 100%;
  height: 88dvh;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0.16rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.modal-spec-box .modal-header {
  width: 100%;
  height: 1.25rem;
  position: relative;
  border-bottom: solid 1px #DBDCDE;
  padding: 0.5rem 0 0.35rem;
  text-align: center;
}
.modal-spec-box .modal-title {
  font-size: 0.4rem;
  line-height: 1em;
  font-weight: bold;
}
.modal-spec-box .modal-close {
  padding: 0.54rem 0.38rem;
}
.modal-spec-box .modal-close .bi {
  width: 0.32rem;
  height: 0.32rem;
}
.modal-spec-box .modal-footer {
  width: 100%;
  height: 1.54rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  grid-column-gap: 0.2rem;
  padding: 0 0.4rem;
  background-color: #fff;
  position: relative;
}
.modal-spec-box .modal-footer .cntd-btn {
  -webkit-flex: 1;
          flex: 1;
  height: 0.84rem;
}
.modal-spec-box .modal-body {
  width: 100%;
  height: -webkit-calc(88dvh - 1.54rem - 1.25rem);
  height: calc(88dvh - 1.54rem - 1.25rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 2rem 1fr;
  position: relative;
}
.modal-spec-box .modal-spec-aside {
  height: 100%;
  position: sitcky;
  top: 0;
  background-color: #EEF1F4;
  font-size: 0.28rem;
  line-height: 0.38rem;
  color: var(--mt-global-color-black-dark);
}
.modal-spec-box .modal-spec-aside .swiper-wrapper {
  display: block;
}
.modal-spec-box .modal-spec-aside .trigger {
  display: block;
  padding: 0.3rem 0.4rem;
}
.modal-spec-box .modal-spec-aside .swiper-slide {
  height: auto;
}
.modal-spec-box .modal-spec-aside .swiper-slide:first-child .trigger {
  padding: 0.55rem 0.4rem 0.35rem;
}
.modal-spec-box .modal-spec-aside .swiper-slide.active {
  color: var(--mt-global-color-blue);
}
.modal-spec-box .modal-spec-aside .swiper-slide.active .trigger {
  background-color: #fff;
}
.modal-spec-box .modal-spec-main {
  background-color: #fff;
  position: relative;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.modal-spec-box .form-ptsch-spec_m {
  padding: 0.55rem 0.4rem 0.55rem;
}
.modal-spec-box .form-ptsch-spec_m .form-group {
  line-height: 0.32rem;
  margin: 0;
}
.modal-spec-box .form-ptsch-spec_m .ptspec-check-grid {
  display: grid;
  grid-gap: 0.7rem 0;
  margin-bottom: 0.7rem;
}
.modal-spec-box .form-ptsch-spec_m .ptspec-range-grid {
  display: grid;
  grid-gap: 0.8rem 0;
}

@media (min-width: 992px) {
  .psearch-input .btn-sch:hover {
    color: var(--mt-global-color-blue-light);
  }
  .pt-filtcol-list > .navitem.active > .navlvt {
    color: var(--mt-global-color-blue-light);
    font-weight: bold;
  }
  .pt-filtcol-list > .navitem.active > .navlvt .bi-arrow {
    opacity: 1;
    visibility: visible;
  }
  .pt-filtcol-list > .navitem:hover > .navlvt {
    color: var(--mt-global-color-blue-light);
    font-weight: bold;
  }
  .pt-filtcol-list > .navitem:hover > .navlvt .bi-arrow {
    opacity: 1;
    visibility: visible;
  }
  .ptsch-result-list .item:hover .item-title {
    color: var(--mt-global-color-blue);
  }
  .ptsch-result-list .item:hover .imgs img {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
  }
}
@media (max-width: 991.98px) {
  .pt-search-mainbox {
    padding: 1rem 0 1.4rem;
  }
  .psearch-column-title {
    font-size: 0.36rem;
    line-height: 0.46rem;
    margin-bottom: 0.3rem;
  }
  .psearch-column-title > *:not(:last-child)::after {
    font-size: 0.52rem;
    line-height: 0.65rem;
    margin: 0 0.1rem;
  }
  .psearch-column-title .current {
    font-size: 0.52rem;
    line-height: 0.65rem;
  }
  .psearch-input {
    padding: 0;
    border-bottom-width: 1px;
  }
  .psearch-input .inpt {
    font-size: 0.36rem;
    line-height: 0.96rem;
    height: 0.96rem;
    padding: 0 0.65rem 0 0;
  }
  .psearch-input .btn-sch {
    width: auto;
    height: 100%;
  }
  .psearch-input .btn-sch .bi {
    width: 0.45rem;
    height: 0.45rem;
  }
  .ptsch-filt-sect {
    margin: 0.7rem -0.4rem 0;
    padding: 0 0.4rem;
    overflow: hidden;
  }
  .ptsch-filt-lvtit {
    font-size: 0.4rem;
    line-height: 0.6rem;
    margin: 0 0 0.4rem;
    padding-bottom: 0.25rem;
    border-bottom: solid 1px #D9D9D9;
  }
  .ptsch-filt-wrap {
    display: block;
    border: none;
  }
  .ptsch-filt-column {
    min-height: 0;
    border: none;
    padding: 0;
  }
  .ptsch-filtcol-lv1 {
    margin-bottom: 0.3rem;
  }
  .ptsch-filtcol-lv1 .navlv1 {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .ptsch-filtcol-lv2 > .pt-filtcol-list.app {
    grid-gap: 0.6rem 0;
  }
  .ptsch-filtcol-other {
    width: 100vw;
    height: 100%;
    margin: 0 -0.4rem;
    background-color: #fff;
    position: relative;
    left: 0;
    top: 0;
    z-index: 20;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .ptsch-filtcol-other.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    -webkit-transform: none;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .pt-filtcol-list {
    font-size: 0.32rem;
    line-height: 0.54rem;
    color: var(--mt-global-color-black-dark);
    display: grid;
    grid-row-gap: 0.3rem;
    padding: 0;
  }
  .pt-filtcol-list > .navitem {
    margin: 0;
  }
  .pt-filtcol-list .bi-arrow {
    display: none;
  }
  .pt-filtcol-list .navlvt-link {
    font-size: 0.36rem;
    line-height: 1em;
    color: var(--mt-global-color-blue);
    font-weight: bold;
    background-color: #F7F9FA;
    height: 0.8rem;
    padding: 0 0.3rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    margin-bottom: 0.4rem;
  }
  .pt-filtcol-list .navlvt-link a {
    display: block;
  }
  .pt-filtcol-list .trigger {
    padding: 0 0.3rem;
  }
  .ptsch-filt-handle {
    width: 100%;
    padding: 0 0.4rem 0.3rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
    border-bottom: solid 1px #DBDCDE;
  }
  .ptsch-filt-handle .tablist {
    width: 2.4rem;
    height: 0.6rem;
    border-radius: 0.3rem;
    background-color: #F2F3F4;
    font-size: 0.28rem;
    line-height: 0.6rem;
    color: #999;
  }
  .ptsch-filt-handle .tabitem.active {
    color: #fff;
  }
  .ptsch-filt-handle .tabitem.active::before {
    background-color: #2E3133;
  }
  .ptsch-btn-goback {
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    font-size: 0.32rem;
    line-height: 0.6rem;
    color: var(--mt-global-color-black-dark);
    -webkit-align-items: center;
            align-items: center;
  }
  .ptsch-btn-goback .bi-arrow {
    width: 0.26rem;
    height: 0.26rem;
    display: block;
    background: url(../images/nav-back.svg) no-repeat center center;
    background-size: contain;
    -webkit-flex: none;
            flex: none;
    margin: 0 0.14rem 0 0;
  }
  .ptsch-filt-content {
    padding: 0 0.4rem;
  }
  .ptsch-filt-panel_series {
    padding-top: 0.6rem;
  }
  .ptsch-filt-panel_series .navlvt-link {
    display: none !important;
  }
  .ptsch-filt-panel_series .pt-filtcol-list .trigger {
    min-width: 0;
  }
  .ptsch-filt-panel_spec {
    padding: 0;
  }
  .ptsch-result-box {
    margin: 0.2rem 0 0;
  }
  .ptsch-result-num {
    font-size: 0.4rem;
    line-height: 0.6rem;
    margin: 0 0 0.25rem;
  }
  .ptsch-result-list {
    margin: 0 -0.4rem;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.38rem 0.2rem;
  }
  .ptsch-result-list .item-topbox {
    padding: 0.26rem 0.28rem 0.64rem;
  }
  .ptsch-result-list .checkitem {
    font-size: 0.24rem;
    line-height: 0.3rem;
    padding: 0 0.4rem;
  }
  .ptsch-result-list .checklabel {
    padding: 0.14rem 0 0.2rem;
  }
  .ptsch-result-list .check-icon {
    width: 0.3rem;
    height: 0.3rem;
  }
  .ptsch-result-list .item-botbox {
    padding: 0.4rem 0.4rem 0.55rem;
  }
  .ptsch-result-list .item-title {
    font-size: 0.36rem;
    line-height: 0.5rem;
  }
  .ptsch-result-list .item-title a {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .ptsch-result-list .item-icon {
    margin: 0.2rem -0.1rem 0;
  }
  .ptsch-result-list .item-icon img {
    width: 0.4rem;
    height: 0.24rem;
  }
  .ptsch-result-nodata {
    padding: 1rem 0;
    margin: 0.7rem -0.4rem 0;
  }
}
/* 产品比较-底部弹框 */
.modal-compare-smbox {
  width: 100%;
  background-color: #2E3033;
  position: fixed;
  bottom: 0;
  z-index: 50;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  visibility: hidden;
  pointer-events: none;
  transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
}
.modal-compare-smbox.is-show {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  pointer-events: auto;
  visibility: visible;
}
.modal-compare-smbox.is-collapse .modal-comp-arrow .bi {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.modal-compare-smbox.is-collapse .modal-comp-swipbox {
  max-height: 0;
  padding: 0;
}

.modal-comp-header {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  line-height: 1em;
  color: #fff;
}

.modal-comp-arrow {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 20;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  cursor: pointer;
  padding: 12px 10px;
}
.modal-comp-arrow .bi {
  width: 1rem;
  height: 0.6rem;
  display: block;
  background: url("../images/comp-arrow.svg") no-repeat center center;
  background-size: contain;
  position: relative;
}

.modal-comp-handle {
  position: relative;
  color: #fff;
}
.modal-comp-handle .btn-clearall > * {
  position: relative;
}
.modal-comp-handle .btn-clearall > *::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 100%;
  pointer-events: none;
}
.modal-comp-handle.web {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
  grid-column-gap: 1rem;
}
.modal-comp-handle.web .btn-compare {
  width: 4.8rem;
  height: 1.8rem;
  font-size: 1em;
}
.modal-comp-handle.app {
  font-size: 0.32rem;
  line-height: 0.48rem;
  margin: 0.3rem 0 0;
}
.modal-comp-handle.app .btn-compare {
  width: 3.25rem;
  height: 0.84rem;
  margin: 0 auto 0.2rem;
}
.modal-comp-handle.app .btn-clearall {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}

.modal-comp-swipbox {
  padding: 0.4rem 0 0.7rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  max-height: 120px;
}

.modal-comp-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.modal-comp-swiper .swiper-slide {
  width: -webkit-calc((100% - 80px) / 5);
  width: calc((100% - 80px) / 5);
}
.modal-comp-swiper .slide-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  background-color: #F3F4F5;
  padding: 6px 1.2rem 6px 1rem;
}
.modal-comp-swiper .btn-del {
  -webkit-flex: none;
          flex: none;
  padding: 8px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
  color: var(--mt-global-color-black_30);
}
.modal-comp-swiper .btn-del .bi {
  width: 14px;
  height: 14px;
  display: block;
  background-color: currentColor;
  -webkit-mask: url("../images/close.svg") no-repeat center/contain;
  mask: url("../images/close.svg") no-repeat center/contain;
}
.modal-comp-swiper .slide-imgs {
  -webkit-flex: none;
          flex: none;
  width: 4rem;
  height: 4rem;
  position: relative;
  overflow: hidden;
  margin: 0 0.75rem 0 0;
}
.modal-comp-swiper .slide-imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.modal-comp-swiper .slide-title {
  font-size: 14px;
  line-height: 19px;
  color: var(--mt-global-color-black-dark);
  font-weight: 500;
}
.modal-comp-swiper .slide-title > * {
  display: block;
}
.modal-comp-swiper.not-swip .swiper-wrapper {
  grid-column-gap: 20px;
}

.modal-comp-paging {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  margin: 10px 0 0;
}
.modal-comp-paging .bullet {
  -webkit-flex: none;
          flex: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  border: solid 1px #fff;
  margin: 0 4px;
  cursor: pointer;
  background-color: transparent;
}
.modal-comp-paging .bullet.active {
  background-color: #fff;
}

@media (min-width: 992px) {
  .modal-comp-swiper .slide-box:hover .slide-imgs img {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
  }
  .modal-comp-swiper .slide-box:hover .slide-title {
    color: var(--mt-global-color-blue);
  }
}
@media (max-width: 991.98px) {
  .modal-compare-smbox.is-collapse .modal-comp-header {
    padding: 0.32rem 0;
  }
  .modal-comp-header {
    padding: 0.45rem 0;
    font-size: 0.36rem;
    line-height: 1em;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .modal-comp-arrow {
    padding: 0.4rem;
  }
  .modal-comp-arrow .bi {
    width: 0.34rem;
    height: 0.2rem;
  }
  .modal-comp-swipbox {
    padding: 0 0 0.95rem;
    max-height: 9rem;
  }
  .modal-comp-swiper .swiper-slide {
    width: 2.5rem;
  }
  .modal-comp-swiper .slide-box {
    display: block;
    padding: 0.16rem 0.2rem 0.2rem;
  }
  .modal-comp-swiper .slide-imgs {
    width: 1.8rem;
    height: 1.8rem;
    margin: 0 auto 0.2rem;
  }
  .modal-comp-swiper .slide-title {
    font-size: 0.24rem;
    line-height: 0.32rem;
    text-align: center;
  }
  .modal-comp-swiper .btn-del {
    padding: 0.24rem 0.2rem;
  }
  .modal-comp-swiper .btn-del .bi {
    width: 0.24rem;
    height: 0.24rem;
  }
}
/* 产品比较-详情弹框 */
.modal-compdet {
  overflow: hidden;
}
.modal-compdet .modal-dialog {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.modal-compdet .modal-content {
  width: 80vw;
  max-width: 1440px;
  background-color: #fff;
  position: relative;
  padding: 2.25rem 0 3.9rem;
}
.modal-compdet .modal-close {
  padding: 1.3rem 1.6rem;
  position: absolute;
  right: 0;
  top: 0;
}
.modal-compdet .modal-close .bi {
  width: 0.9rem;
  height: 0.9rem;
}
.modal-compdet .modal-header {
  background-color: #fff;
  padding: 0 3rem 1rem 2.6rem;
  position: relative;
  z-index: 10;
}
.modal-compdet .modal-body {
  overflow: hidden;
  padding: 0 3rem 0 2.6rem;
}
.modal-compdet .scroll-content {
  margin: 0 -2.5rem 0 0;
  padding: 0 2.3rem 0 0;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  max-height: -webkit-calc(100vh - 155px - 194px);
  max-height: calc(100vh - 155px - 194px);
}
.modal-compdet .scroll-content::-webkit-scrollbar {
  width: 4px;
}
.modal-compdet .scroll-content::-webkit-scrollbar-track-piece {
  background-color: transparent;
}
.modal-compdet .scroll-content::-webkit-scrollbar-thumb:vertical {
  width: 4px;
  background-color: #E1E2E5;
  -webkit-border-radius: 0px;
}
.modal-compdet .modal-title {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: bold;
}

.modal-compdet-model-box {
  position: relative;
  margin-bottom: 1rem;
}

.modal-compdet-model-list {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}
.modal-compdet-model-list .slide-box {
  padding: 0 30px 0 10px;
  height: 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
  background-color: #F3F4F5;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1em;
  color: #666;
  cursor: pointer;
}
.modal-compdet-model-list .slide-title {
  min-width: 80px;
}
.modal-compdet-model-list .btn-handle {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.modal-compdet-model-list .btn-handle .bi {
  width: 24px;
  height: 24px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
.modal-compdet-model-list .btn-handle .bi::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.modal-compdet-model-list .btn-handle .bi::after {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.modal-compdet-model-list .btn-del {
  display: none;
  color: var(--mt-global-color-black-dark);
}
.modal-compdet-model-list .btn-del .bi::after {
  display: none;
}
.modal-compdet-model-list .btn-add {
  color: var(--mt-global-color-blue);
}
.modal-compdet-model-list .swiper-slide {
  width: auto;
  white-space: nowrap;
}
.modal-compdet-model-list .swiper-slide.is-selected .slide-box {
  background-color: var(--mt-global-color-blue);
  color: #fff;
}
.modal-compdet-model-list .swiper-slide.is-selected .btn-del {
  display: block;
}
.modal-compdet-model-list .swiper-slide.is-selected .btn-add {
  display: none;
}

.modal-compdet-model-ctrl {
  width: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 20;
  color: var(--mt-global-color-black_30);
  cursor: pointer;
}
.modal-compdet-model-ctrl .bi {
  width: 12px;
  height: 32px;
  display: block;
  background-color: currentColor;
  position: absolute;
  top: 8px;
}
.modal-compdet-model-ctrl.next {
  right: 0;
  background: -webkit-linear-gradient(right, #FFFFFF 36%, rgba(255, 255, 255, 0) 135%);
  background: linear-gradient(270deg, #FFFFFF 36%, rgba(255, 255, 255, 0) 135%);
}
.modal-compdet-model-ctrl.next .bi {
  right: 7px;
  -webkit-mask: url("../images/nav-right.svg") no-repeat center/contain;
  mask: url("../images/nav-right.svg") no-repeat center/contain;
}
.modal-compdet-model-ctrl.prev {
  left: 0;
  background: -webkit-linear-gradient(left, #FFFFFF 36%, rgba(255, 255, 255, 0) 135%);
  background: linear-gradient(90deg, #FFFFFF 36%, rgba(255, 255, 255, 0) 135%);
}
.modal-compdet-model-ctrl.prev .bi {
  left: 7px;
  -webkit-mask: url("../images/nav-left.svg") no-repeat center/contain;
  mask: url("../images/nav-left.svg") no-repeat center/contain;
}
.modal-compdet-model-ctrl.swiper-button-disabled {
  display: none !important;
}

.cntd-compdet-table {
  width: 100%;
  /*display: grid;*/
  grid-template-columns: 15em -webkit-calc(100% - 15em);
  grid-template-columns: 15em calc(100% - 15em);
  border-top: solid 1px var(--mt-global-color-black-dark);
  border-bottom: solid 1px var(--mt-global-color-black-dark);
  position: relative;
  font-size: max(14px, 0.8em);
  line-height: 1.25em;
  color: var(--mt-global-color-black-dark);
}
.cntd-compdet-table .thead {
  height: 10.5em;
  display: block;
  position: relative;
  border-bottom: solid 1px var(--mt-global-color-black-dark);
}
.cntd-compdet-table .package {
  height: 3.75em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  border-bottom: solid 1px rgba(17, 17, 17, 0.08);
  word-break: break-word;
  padding: 0 5px;
}

.cntd-compdet-tbside {
  color: #4D4D4D;
  background-color: #F3F4F5;
}
.cntd-compdet-tbside .s-tit {
  line-height: 1em;
  color: #000;
  font-weight: 500;
  margin-bottom: 1.25em;
}
.cntd-compdet-tbside .checkitem {
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 24px;
}
.cntd-compdet-tbside .checkitem:last-child {
  margin-bottom: 0;
}
.cntd-compdet-tbside .check-icon {
  width: 1.125em;
  height: 1.125em;
}
.cntd-compdet-tbside .thead {
  padding: 1.56em 1.5em;
}
.cntd-compdet-tbside .package {
  text-align: left;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  padding: 0 0.5em 0 1.5em;
}

.cntd-compdet-tbcont {
  position: relative;
}

.cntd-compdet-tbswip {
  overflow: hidden;
}
.cntd-compdet-tbswip .slide-imgs {
  width: 5.625em;
  max-width: 100%;
  height: 4.5em;
  overflow: hidden;
  position: relative;
  margin: 0 auto 1em;
}
.cntd-compdet-tbswip .imgs {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.cntd-compdet-tbswip .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.cntd-compdet-tbswip .slide-title {
  color: #080808;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  font-weight: bold;
}
.cntd-compdet-tbswip .thead {
  padding: 0.94em 5px;
  border-left: solid 1px #E6E6E6;
}
.cntd-compdet-tbswip .package {
  height: 3rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
  border-left: solid 1px #E6E6E6;
}
.cntd-compdet-tbswip .package.cert .td {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
}
.cntd-compdet-tbswip .package.cert span {
  display: block;
  white-space: nowrap;
}
.cntd-compdet-tbswip .package.cert span::after {
  content: "/";
}
.cntd-compdet-tbswip .package.cert span:last-child::after {
  display: none;
}
.cntd-compdet-tbswip.not-swip .swiper-slide {
  min-width: 16.6666666667%;
  -webkit-flex: 1;
          flex: 1;
}

.cntd-compdet-tbctrl {
  position: absolute;
  top: 4em;
  z-index: 20;
  border-radius: 50%;
  background-color: var(--mt-global-color-blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}
.cntd-compdet-tbctrl .bi {
  width: 2em;
  height: 2em;
  display: block;
  background-color: currentColor;
  position: relative;
}
.cntd-compdet-tbctrl.next {
  right: 0;
  transform: translate(50%, 0);
  -webkit-transform: translate(50%, 0);
}
.cntd-compdet-tbctrl.next .bi {
  -webkit-mask: url("../images/swip-right.svg") no-repeat center/contain;
  mask: url("../images/swip-right.svg") no-repeat center/contain;
}
.cntd-compdet-tbctrl.prev {
  left: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
.cntd-compdet-tbctrl.prev .bi {
  -webkit-mask: url("../images/swip-left.svg") no-repeat center/contain;
  mask: url("../images/swip-left.svg") no-repeat center/contain;
}
.cntd-compdet-tbctrl.swiper-button-disabled {
  display: none !important;
}

@media (max-width: 991.98px) {
  .modal-compdet .modal-content {
    width: 100%;
    min-height: 100dvh;
    max-width: none;
    padding: 0;
  }
  .modal-compdet .modal-close {
    padding: 0.4rem;
    top: 1rem;
  }
  .modal-compdet .modal-close .bi {
    width: 0.25rem;
    height: 0.25rem;
  }
  .modal-compdet .modal-header {
    padding: 1.2rem 0.4rem 0.45rem;
  }
  .modal-compdet .modal-title {
    font-size: 0.52rem;
    line-height: 0.65rem;
  }
  .modal-compdet .modal-body {
    padding: 0 0.4rem;
  }
  .modal-compdet .scroll-content {
    margin: 0 -0.4rem;
    padding: 0;
    max-height: -webkit-calc(100dvh - 2.3rem);
    max-height: calc(100dvh - 2.3rem);
  }
  .modal-compdet-model-box {
    margin-bottom: 0.3rem;
    padding: 0 0.4rem;
  }
  .modal-compdet-model-list {
    padding: 0;
  }
  .modal-compdet-model-list .slide-box {
    height: 0.6rem;
    padding: 0 0.72rem 0 0.22rem;
    font-size: 0.28rem;
    line-height: 0.32rem;
    border-radius: 0.3rem;
  }
  .modal-compdet-model-list .slide-title {
    min-width: 1.3rem;
  }
  .modal-compdet-model-list .btn-handle .bi {
    width: 0.45rem;
    height: 0.45rem;
  }
  .modal-compdet-model-ctrl {
    width: 1.25rem;
    top: 0;
    bottom: 0;
  }
  .modal-compdet-model-ctrl .bi {
    width: 10px;
    height: 14px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  .modal-compdet-model-ctrl.next {
    background: -webkit-linear-gradient(179.68deg, #FFFFFF 46.47%, rgba(255, 255, 255, 0) 98.98%);
    background: linear-gradient(270.32deg, #FFFFFF 46.47%, rgba(255, 255, 255, 0) 98.98%);
    right: -0.4rem;
  }
  .modal-compdet-model-ctrl.next .bi {
    right: 0.4rem;
  }
  .modal-compdet-model-ctrl.prev {
    background: -webkit-linear-gradient(359.68deg, #FFFFFF 46.47%, rgba(255, 255, 255, 0) 98.98%);
    background: linear-gradient(90.32deg, #FFFFFF 46.47%, rgba(255, 255, 255, 0) 98.98%);
    left: -0.4rem;
  }
  .modal-compdet-model-ctrl.prev .bi {
    left: 0.4rem;
  }
  .td32 {
  text-align: center;
  text-align: justify;
  background-color: #F4E8ED;
  font-weight: bold;
  color: #333333;
  }
  .cntd-compdet-table {
    grid-template-columns: 2.5rem -webkit-calc(100vw - 2.5rem);
    grid-template-columns: 2.5rem calc(100vw - 2.5rem);
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .cntd-compdet-table .thead {
    height: 3.20rem;
  }
  .cntd-compdet-table .package {
    height: 1.34rem;
    padding: 0.25rem 5px;
  }
  .cntd-compdet-tbside .thead {
    padding: 0.68rem;
  }
  .cntd-compdet-tbside .package {
    text-align: center;
    -webkit-justify-content: center;
            justify-content: center;
    padding: 0.25rem 0.35rem;
  }
  .cntd-compdet-tbside .s-tit {
    line-height: 0.32rem;
    margin-bottom: 0.42rem;
  }
  .cntd-compdet-tbside .checkitem {
    font-size: 1em;
    line-height: 0.36rem;
    margin-bottom: 0.3rem;
  }
  .cntd-compdet-tbside .checklabel {
    padding: 0;
  }
  .cntd-compdet-tbside .check-icon {
    width: 0.36rem;
    height: 0.36rem;
  }
  .cntd-compdet-tbswip .swiper-slide {
    min-width: 2.5rem !important;
  }
  .cntd-compdet-tbswip .slide-imgs {
    width: 1.8rem;
    height: 1.8rem;
    margin: 0 auto 0.1rem;
  }
  .cntd-compdet-tbswip .slide-title {
    color: var(--mt-global-color-black-dark);
  }
  .cntd-compdet-tbswip .slide-title .title {
    display: none;
  }
  .cntd-compdet-tbctrl {
    display: none !important;
  }
}
/* 自定义样式-产品系列频道页 */
.pt-series-banner {
  position: relative;
}
.pt-series-banner .b-imgs {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.pt-series-banner .b-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.pt-series-banner .b-imgs.web {
  height: min(20.83vw, 20rem);
}
.pt-series-banner .b-imgs.app {
  height: 4rem;
}
.pt-series-banner .b-body {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  color: #fff;
  padding: 0 0 4rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.pt-series-banner .b-text {
  font-size: 1rem;
  line-height: 1.5em;
  margin: 0.75rem 0 0;
}

.ptss-anchor-wrap {
  width: 100%;
  background-color: #fff;
  position: static;
  top: 4rem;
  z-index: 20;
  transition: top 0.3s linear;
  -webkit-transition: top 0.3s linear;
}

.ptss-anchor-place {
  display: none;
}

.ptss-anchor-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  font-size: 0.8rem;
  line-height: 1.1rem;
  color: var(--mt-global-color-black-dark);
  text-align: center;
  padding: 3rem 0 1.4rem;
  border-bottom: solid 1px #D1D2D4;
}
.ptss-anchor-swiper .swiper-slide {
  width: 7rem;
}
.ptss-anchor-swiper .swiper-slide.active {
  color: var(--mt-global-color-blue);
}
.ptss-anchor-swiper .trigger {
  height: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}
.ptss-anchor-swiper .imgs {
  width: 100%;
  height: 5rem;
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0 auto 1rem;
}
.ptss-anchor-swiper .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.ptss-anchor-swiper .text {
  padding: 0 1.25em;
}

.ptss-anchor-ctrl {
  display: block;
  position: absolute;
  top: 3rem;
  bottom: 1.5rem;
  cursor: pointer;
  color: var(--mt-global-color-black-dark);
  z-index: 20;
}
.ptss-anchor-ctrl .bi {
  width: 2.25rem;
  height: 1.6rem;
  display: block;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.ptss-anchor-ctrl.prev {
  right: 100%;
  transform: translate(-8px, 0);
  -webkit-transform: translate(-8px, 0);
}
.ptss-anchor-ctrl.prev .bi {
  -webkit-mask: url("../images/swip-prev.svg") no-repeat center/contain;
  mask: url("../images/swip-prev.svg") no-repeat center/contain;
}
.ptss-anchor-ctrl.next {
  left: 100%;
  transform: translate(8px, 0);
  -webkit-transform: translate(8px, 0);
}
.ptss-anchor-ctrl.next .bi {
  -webkit-mask: url("../images/swip-next.svg") no-repeat center/contain;
  mask: url("../images/swip-next.svg") no-repeat center/contain;
}
.ptss-anchor-ctrl.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

body.fixed-ptanchor .ptss-anchor-wrap {
  position: fixed;
}
body.fixed-ptanchor .ptss-anchor-place {
  display: block;
}

.pt-series-sect {
  position: relative;
  transition: padding 0.3s ease;
  -webkit-transition: padding 0.3s ease;
}
.pt-series-sect:last-child .ptss-sect-box {
  padding-bottom: 3.5rem;
  border-bottom: none;
}
.pt-series-sect.is-show-more {
  background-color: #F7F8FA;
}
.pt-series-sect.is-show-more .ptss-sect-box {
  padding: 4rem 0 2.7rem;
}
.pt-series-sect.is-show-more .ptss-learn-more {
  display: none;
}
.pt-series-sect.is-show-more .ptss-learn-less {
  display: -webkit-flex;
  display: flex;
}
.pt-series-sect.is-show-more .ptss-sect-head_right {
  display: none;
}

.ptss-sect-box {
  padding: 5rem 0 2.7rem;
  border-bottom: solid 1px #C1C7CD;
}

.ptss-sect-head {
  width: 100%;
  display: grid;
  grid-column-gap: 1rem;
  grid-template-columns: 22rem 1fr;
}

.ptss-sect-head_left {
  -webkit-flex: 1;
          flex: 1;
}
.ptss-sect-head_left .s-title {
  font-weight: bold;
  color: var(--mt-global-color-blue-dark);
}
.ptss-sect-head_left .s-text {
  font-size: 1rem;
  line-height: 1.5em;
  margin: 0.5rem 0 0;
}

.ptss-sect-head_right {
  -webkit-flex: none;
          flex: none;
  margin-left: 1rem;
  position: absolute;
  top: 150px;
  left: -10px;
}

.ptss-learn-more {
  cursor: pointer;
  position: relative;
  margin: 1.5rem 0 0;
  font-size: 1rem;
  line-height: 1.5em;
  color: var(--mt-global-color-blue);
  display: -webkit-flex;
  display: flex;
}
.ptss-learn-more > * {
  -webkit-flex: none;
          flex: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  white-space: nowrap;
}
.ptss-learn-more .bi-arrow {
  -webkit-flex: none;
          flex: none;
  width: 1.1rem;
  height: 0.8rem;
  display: block;
  -webkit-mask: url("../images/nav-down.svg") no-repeat center/contain;
  mask: url("../images/nav-down.svg") no-repeat center/contain;
  position: relative;
  background-color: currentColor;
  margin: 0 0 0 5px;
}

.ptss-learn-less {
  width: 5rem;
  height: 2rem;
  display: none;
  cursor: pointer;
  margin: 2.1rem auto 0;
  font-size: 0.8rem;
  line-height: 1em;
  text-align: center;
  color: var(--mt-global-color-blue-dark);
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  position: sticky;
  bottom: 2rem;
}
.ptss-learn-less > * {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  white-space: nowrap;
}

.ptss-sect-feature_small {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 0.75rem;
}
.ptss-sect-feature_small .item-box {
  width: 100%;
  height: 100%;
  display: block;
  border: solid 1px #E0E0E0;
  position: relative;
  padding: 0.8rem 1rem 3px;
  font-size: 0.8rem;
  line-height: 1.1rem;
  color: #666;
}
.ptss-sect-feature_small .item-icon {
  position: relative;
  margin-bottom: 0.35rem;
}
.ptss-sect-feature_small .item-icon img {
  max-width: 100%;
  height: 2.4rem;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.ptss-sect-detbox {
  display: none;
  margin: 1.75rem 0 3.5rem;
  padding: 0 0 2rem;
  border-bottom: solid 1px #C1C7CD;
}

.ptss-sect-feature_big .item-box {
  width: 100%;
  height: 15rem;
  display: block;
  background-color: #EAECED;
  position: relative;
  padding: 2rem 1.6rem;
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: var(--mt-global-color-black-dark);
  text-align: center;
}
.ptss-sect-feature_big .item-icon {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  margin: 0 auto 1.5rem;
}
.ptss-sect-feature_big .item-icon img {
  -webkit-flex: none;
          flex: none;
  max-width: 100%;
  height: 6.5rem;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.ptss-sect-twlist {
  margin: 4.5rem 0 0;
}

.ptss-sect-twitem {
  width: 100%;
  display: grid;
  grid-column-gap: 3rem;
  grid-template-columns: 50% 1fr;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}
.ptss-sect-twitem .item-imgs {
  position: relative;
}
.ptss-sect-twitem .imgs {
  width: 100%;
  padding: 56.25% 0 0;
  overflow: hidden;
  position: relative;
}
.ptss-sect-twitem .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.ptss-sect-twitem .item-body {
  direction: initial;
}
.ptss-sect-twitem .item-title {
  font-weight: bold;
  color: var(--mt-global-color-blue-dark);
  margin-bottom: 1.2rem;
}
.ptss-sect-twitem .item-desc {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--mt-global-color-black-dark);
}

.ptss-sect-listbox {
  margin: 2.75rem 0 0;
}

.ptss-list-more {
  cursor: pointer;
  position: relative;
  margin: 1.4rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5em;
  color: var(--mt-global-color-black-dark);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.ptss-list-more > * {
  -webkit-flex: none;
          flex: none;
  padding: 0 1em;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  white-space: nowrap;
}
.ptss-list-more .bi-arrow {
  -webkit-flex: none;
          flex: none;
  width: 1.1rem;
  height: 0.8rem;
  display: block;
  -webkit-mask: url("../images/nav-down.svg") no-repeat center/contain;
  mask: url("../images/nav-down.svg") no-repeat center/contain;
  position: relative;
  background-color: currentColor;
  margin: 0 0 0 1em;
}

.ptss-list-less {
  display: none;
  cursor: pointer;
  margin: 1.4rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5em;
  color: var(--mt-global-color-black-dark);
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
}
.ptss-list-less > * {
  -webkit-flex: none;
          flex: none;
  padding: 0 1em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  white-space: nowrap;
}
.ptss-list-less .bi-arrow {
  -webkit-flex: none;
          flex: none;
  width: 1.1rem;
  height: 0.8rem;
  display: block;
  -webkit-mask: url("../images/nav-up.svg") no-repeat center/contain;
  mask: url("../images/nav-up.svg") no-repeat center/contain;
  position: relative;
  background-color: currentColor;
  margin: 0 0 0 1em;
}

@media (min-width: 992px) {
  .ptss-anchor-wrap.is-sticky {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper {
    padding: 0;
    height: 3.9rem;
    border: none;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper .trigger {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper .imgs {
    display: none;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper .swiper-slide:hover {
    color: var(--mt-global-color-blue);
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper .swiper-slide.active {
    background-color: #F3F4F5;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-ctrl {
    background-color: #fff;
    top: 0;
    bottom: 0;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-ctrl .bi {
    width: 0.8rem;
    height: 1.3rem;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-ctrl.next {
    transform: translate(-100%, 0);
    -webkit-transform: translate(-100%, 0);
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-ctrl.prev {
    transform: translate(100%, 0);
    -webkit-transform: translate(100%, 0);
  }
  .ptss-anchor-swiper.not-swip .swiper-wrapper {
    grid-column-gap: 22px;
  }
  .ptss-anchor-swiper .swiper-slide:hover {
    color: var(--mt-global-color-blue);
  }
  .ptss-learn-more:hover, .ptss-learn-less:hover, .ptss-list-more:hover, .ptss-list-less:hover {
    color: var(--mt-global-color-blue-hover);
  }
  .ptss-sect-feature_big .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 1.5rem;
  }
  .ptss-sect-twitem:nth-child(even) {
    direction: rtl;
  }
  .ptss-sect-head_left .s-title {
    font-size: 2.1rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .pt-series-banner .b-body {
    padding: 0 0 1rem;
  }
  .pt-series-banner .b-text {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin: 0.2rem 0 0;
  }
  .ptss-anchor-wrap {
    top: 1.1rem;
    border-bottom: solid 1px #D1D2D4;
  }
  .ptss-anchor-wrap.is-sticky {
    padding: 0;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    border-bottom: none;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper {
    height: 1.2rem;
    padding: 0;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper .trigger {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper .imgs {
    display: none;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper .swiper-slide {
    width: auto;
    padding: 0 0.24rem;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-swiper .swiper-slide.active {
    background-color: #F3F4F5;
  }
  .ptss-anchor-wrap.is-sticky .ptss-anchor-ctrl .bi {
    width: 0.4rem;
    height: 0.28rem;
  }
  .ptss-anchor-swiper {
    padding: 0.8rem 0;
    font-size: 0.28rem;
    line-height: 0.32rem;
    border-bottom: none;
  }
  .ptss-anchor-swiper .swiper-slide {
    width: 2rem;
  }
  .ptss-anchor-swiper .imgs {
    height: 1.45rem;
    margin: 0 auto 0.34rem;
  }
  .ptss-anchor-swiper .text {
    padding: 0;
  }
  .ptss-anchor-ctrl {
    top: 0;
    bottom: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }
  .ptss-anchor-ctrl .bi {
    -webkit-flex: none;
            flex: none;
    width: 0.45rem;
    height: 0.32rem;
    position: static;
    transform: none;
    -webkit-transform: none;
  }
  .ptss-anchor-ctrl.next {
    padding: 0 0.35rem 0 0.62rem;
    background: -webkit-linear-gradient(179.68deg, #FFFFFF 49.97%, rgba(255, 255, 255, 0) 98.98%);
    background: linear-gradient(270.32deg, #FFFFFF 49.97%, rgba(255, 255, 255, 0) 98.98%);
    left: unset;
    right: 0;
  }
  .ptss-anchor-ctrl.prev {
    padding: 0 0.62rem 0 0.35rem;
    background: -webkit-linear-gradient(359.68deg, #FFFFFF 49.97%, rgba(255, 255, 255, 0) 98.98%);
    background: linear-gradient(90.32deg, #FFFFFF 49.97%, rgba(255, 255, 255, 0) 98.98%);
    right: unset;
    left: 0;
  }
  .pt-series-sect {
    padding: 1.2rem 0 0.8rem;
    border-bottom: solid 1px #C1C7CD;
  }
  .pt-series-sect:last-child {
    border-bottom: none;
  }
  .ptss-sect-box {
    padding: 0 !important;
    border-bottom: none;
  }
  .ptss-sect-head {
    grid-template-columns: repeat(1, 1fr);
  }
  .ptss-sect-head_left .s-text {
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin: 0.2rem 0 0;
  }
  .ptss-learn-more {
    font-size: 0.32rem;
    line-height: 0.52rem;
    margin: 0.4rem 0 0;
  }
  .ptss-learn-more .bi-arrow {
    width: 0.45rem;
    height: 0.32rem;
    margin: 0 0 0 0.1rem;
  }
  .ptss-sect-detbox {
    margin: 0.6rem 0 0.7rem;
    padding: 0 0 0.45rem;
  }
  .ptss-sect-twlist {
    margin: 1rem 0 0;
  }
  .ptss-sect-twitem {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.6rem 0;
    margin-bottom: 1rem;
  }
  .ptss-sect-twitem:last-child {
    margin-bottom: 0;
  }
  .ptss-sect-twitem .item-title {
    margin-bottom: 0.3rem;
  }
  .ptss-sect-twitem .item-desc {
    font-size: 0.32rem;
    line-height: 0.54rem;
  }
  .ptss-sect-listbox {
    margin: 0.7rem 0 0;
  }
  .ptss-list-more, .ptss-list-less {
    font-size: 0.28rem;
    line-height: 1em;
    margin: 0.5rem 0 0;
  }
  .ptss-list-more .bi-arrow, .ptss-list-less .bi-arrow {
    width: 0.4rem;
    height: 0.28rem;
    margin: 0 0 0 0.14rem;
  }
  .ptss-sect-feature_big {
    overflow: hidden;
  }
  .ptss-sect-feature_big .item-box {
    height: 4rem;
    font-size: 0.28rem;
    line-height: 0.38rem;
    padding: 0.46rem 0.2rem 0.4rem;
  }
  .ptss-sect-feature_big .item-icon {
    margin: 0 auto 0.54rem;
  }
  .ptss-sect-feature_big .item-icon img {
    height: 1.62rem;
  }
  .ptss-featur-paging {
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    display: -webkit-flex;
    display: flex;
    margin: 0.56rem 0 0;
  }
  .ptss-featur-paging .bullet {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background-color: #999999;
    position: relative;
    cursor: pointer;
    margin: 0 0.15rem;
  }
  .ptss-featur-paging .bullet.active {
    width: 11px;
    height: 11px;
    background-color: var(--mt-global-color-blue);
  }
  .ptss-learn-less {
    width: 1.6rem;
    height: 0.7rem;
    border-radius: 0.35rem;
    font-size: 0.28rem;
    line-height: 1em;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
    bottom: 0.45rem;
    color: var(--mt-global-color-blue);
    z-index: 30;
    margin: 0.8rem auto 0;
  }
}
.p-product-series .rocket-crumb-list > .navitem:last-child {
  color: #666;
}
.p-product-series .rocket-crumb-list > .navitem:not(:last-child)::after {
  color: #666;
}
.p-product-series .rocket-crumb-list {
  color: #666;
}
.p-product-series .pt-series-banner .rocket-content__inner {
  /*display: none; */
}

/* 自定义样式-产品详情页 */
.ptdet-nav-wrapper {
  width: 100%;
  height: 3.9rem;
  position: fixed;
  left: 0;
  top: 4rem;
  background-color: #fff;
  z-index: 100;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
.ptdet-nav-wrapper .rocket-content__inner {
  height: 100%;
}

.ptdet-nav-place {
  width: 100%;
  height: 3.9rem;
}

.ptdet-nav-swiper {
  width: 100%;
  height: 100%;
  font-size: 0.8rem;
  line-height: 1em;
  color: #070707;
  overflow: hidden;
  position: relative;
}
.ptdet-nav-swiper .swiper-slide {
  width: auto;
  height: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  white-space: nowrap;
}
.ptdet-nav-swiper .swiper-slide > * {
  min-width: 5rem;
  display: -webkit-flex;
  display: flex;
  height: 1.9rem;
  padding: 0 1rem;
  text-align: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  background-color: #F3F4F5;
  border-radius: 1rem;
  overflow: hidden;
}
.ptdet-nav-swiper .swiper-slide.current {
  color: #fff;
}
.ptdet-nav-swiper .swiper-slide.current > * {
  background-color: var(--mt-global-color-blue);
}

.ptdet-nav-ctrl {
  width: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 20;
  color: var(--mt-global-color-black_30);
  cursor: pointer;
}
.ptdet-nav-ctrl .bi {
  width: 12px;
  height: 32px;
  display: block;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
.ptdet-nav-ctrl.next {
  right: 0;
  background: -webkit-linear-gradient(right, #FFFFFF 36%, rgba(255, 255, 255, 0) 135%);
  background: linear-gradient(270deg, #FFFFFF 36%, rgba(255, 255, 255, 0) 135%);
}
.ptdet-nav-ctrl.next .bi {
  right: 7px;
  -webkit-mask: url("../images/nav-right.svg") no-repeat center/contain;
  mask: url("../images/nav-right.svg") no-repeat center/contain;
}
.ptdet-nav-ctrl.prev {
  left: 0;
  background: -webkit-linear-gradient(left, #FFFFFF 36%, rgba(255, 255, 255, 0) 135%);
  background: linear-gradient(90deg, #FFFFFF 36%, rgba(255, 255, 255, 0) 135%);
}
.ptdet-nav-ctrl.prev .bi {
  left: 7px;
  -webkit-mask: url("../images/nav-left.svg") no-repeat center/contain;
  mask: url("../images/nav-left.svg") no-repeat center/contain;
}
.ptdet-nav-ctrl.swiper-button-disabled {
  display: none !important;
}

.ptdet-topbox-sect {
  position: relative;
}

.ptdet-topview-box {
  overflow: hidden;
  position: relative;
}

.ptdet-topview-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
  background-color: #F7F7F7;
  position: relative;
}

.ptdet-topview-left {
  background-color: #EEEFF0;
  padding: 4rem 6.5rem 1rem;
  position: relative;
  z-index: 10;
}

.ptdet-topview-right {
  position: relative;
  z-index: 10;
  padding: 3.5rem 0 4.1rem 3rem;
}

.ptdet-golink-720 {
  display: block;
  position: absolute;
  left: 0;
  top: 5.7rem;
  z-index: 20;
  font-size: 0.9rem;
  line-height: 1em;
  color: #666;
  font-weight: 500;
}
.ptdet-golink-720 .icon {
  width: 3.2rem;
  display: block;
  margin: 0 auto 0.5rem;
}

.ptdet-topview-imgbox {
  width: 100%;
  position: relative;
}

.ptdet-topview-bigimg {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ptdet-topview-bigimg .imgs {
  width: 100%;
  padding: 100% 0 0;
  overflow: hidden;
  position: relative;
}
.ptdet-topview-bigimg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.ptdet-topview-thmubbox {
  width: 100%;
  padding: 0 3.6rem;
  position: relative;
  margin: 11px 0 0;
}

.ptdet-topview-thmub {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 0.4rem;
}
.ptdet-topview-thmub .imgs {
  width: 100%;
  padding: 100% 0 0;
  overflow: hidden;
  position: relative;
  border: solid 1px #CACBCC;
  background-color: #F7F7F7;
  cursor: pointer;
}
.ptdet-topview-thmub img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.ptdet-topview-thmub .is-active .imgs, .ptdet-topview-thmub .swiper-slide-thumb-active .imgs {
  border-color: var(--mt-global-color-blue-light);
}

.ptdet-topview-ctrl {
  width: 2.25rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  cursor: pointer;
  color: var(--mt-global-color-black-dark);
  z-index: 20;
}
.ptdet-topview-ctrl .bi {
  width: 2.25rem;
  height: 1.6rem;
  display: block;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.ptdet-topview-ctrl.prev {
  left: 0.75rem;
}
.ptdet-topview-ctrl.prev .bi {
  -webkit-mask: url("../images/swip-prev.svg") no-repeat center/contain;
  mask: url("../images/swip-prev.svg") no-repeat center/contain;
}
.ptdet-topview-ctrl.next {
  right: 0.75rem;
}
.ptdet-topview-ctrl.next .bi {
  -webkit-mask: url("../images/swip-next.svg") no-repeat center/contain;
  mask: url("../images/swip-next.svg") no-repeat center/contain;
}
.ptdet-topview-ctrl.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.ptdet-introd-box {
  overflow: hidden;
  border-bottom: solid 1px #E0E0E0;
}

.ptdet-introd-series {
  font-size: 0.9rem;
  line-height: 1em;
  color: var(--mt-global-color-blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.ptdet-introd-title {
  font-size: 2.1rem;
  line-height: 2.5rem;
  font-weight: bold;
  color: var(--mt-global-color-blue-dark);
}

.ptdet-introd-params {
  margin: 2.2rem 0;
  font-size: 0.8rem;
  line-height: 1rem;
  color: var(--mt-global-color-black-dark);
  min-height: 5.2rem;
}
.ptdet-introd-params .params-item {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 0.5rem;
}
.ptdet-introd-params .params-item:last-child {
  margin-bottom: 0;
}
.ptdet-introd-params .params-item .tit {
  white-space: nowrap;
  margin: 0 1.5rem 0 0;
}

.ptdet-introd-icolist {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 2.2rem 0 1rem;
}
.ptdet-introd-icolist img {
  width: 2rem;
  height: 1rem;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: relative;
}

.ptdet-topview-handle {
  margin: 1.75rem 0 0;
}
.ptdet-topview-handle .cntd-btn {
  width: 100%;
  height: 2.7rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.ptdet-topview-handle .cntd-btn:last-child {
  margin-bottom: 0;
}
.ptdet-topview-handle .cntd-btn .bi {
  width: 1.3rem;
  height: 1.3rem;
  margin: 0 10px 0 0;
}

.ptdet-other-box {
  padding: 5rem 0 4.6rem;
}

.ptdet-spec-header {
  margin-bottom: 2rem;
}
.ptdet-spec-header .s-heading-title {
  font-weight: bold;
  color: var(--mt-global-color-blue-dark);
}
.ptdet-spec-header .s-flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.ptdet-spec-header .s-text {
  font-size: 0.8rem;
  line-height: 1.1rem;
}
.ptdet-spec-header .btn-compare {
  width: 3.6rem;
  height: 1.7rem;
  font-size: 0.8rem;
}

.ptdet-contact-sect {
  margin: 4.7rem 0 0;
}

.ptdet-contact-card {
  width: 100%;
  height: 17rem;
  display: block;
  overflow: hidden;
  position: relative;
}
.ptdet-contact-card .card-bg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.ptdet-contact-card .card-bg .imgs {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.ptdet-contact-card .card-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.ptdet-contact-card .card-body {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 0;
}
.ptdet-contact-card .s-heading-title {
  color: inherit;
}
.ptdet-contact-card .text {
  font-size: 1rem;
  line-height: 1.5em;
  margin: 0.75rem 0 0;
}

.modal-download .modal-dialog {
  min-height: 100vh;
  padding: 3.75rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.modal-download .modal-close {
  padding: 1.1rem 1.6rem;
}
.modal-download .modal-close .bi {
  width: 0.9rem;
  height: 0.9rem;
}
.modal-download .modal-content {
  width: 80vw;
  max-width: 1000px;
  background-color: #fff;
  position: relative;
  padding: 2.5rem 2.6rem 3.5rem;
}
.modal-download .modal-header {
  margin-bottom: 1.25rem;
}
.modal-download .modal-title {
  font-size: 1.6rem;
  line-height: 1em;
  font-weight: bold;
  color: var(--mt-global-color-blue-dark);
}
.modal-download .modal-text {
  font-size: 0.8rem;
  line-height: 1em;
  color: #4D4D4D;
  margin: 1rem 0 0;
}

@media (min-width: 992px) {
  .ptdet-nav-swiper .swiper-slide:hover {
    color: #fff;
  }
  .ptdet-nav-swiper .swiper-slide:hover > * {
    background-color: var(--mt-global-color-blue);
  }
  .ptdet-topview-layout::before {
    content: "";
    width: 50vw;
    height: 100%;
    background-color: #EEEFF0;
    position: absolute;
    right: 50%;
    top: 0;
    z-index: 1;
    pointer-events: none;
  }
  .ptdet-topview-layout::after {
    content: "";
    width: 50vw;
    height: 100%;
    background-color: #F7F7F7;
    position: absolute;
    left: 60%;
    top: 0;
    z-index: 1;
    pointer-events: none;
  }
  .ptdet-golink-720:hover {
    color: var(--mt-global-color-blue);
  }
  .ptdet-topview-thmub .swiper-slide {
    width: 4rem;
  }
  .ptdet-topview-ctrl:hover {
    color: var(--mt-global-color-blue);
  }
  .ptdet-spec-sect .s-heading-title {
    line-height: 1em;
  }
  .ptdet-spec-sect .s-text {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
  .ptdet-contact-card .card-body {
    padding: 0 0.3rem;
  }
  .ptdet-contact-card .cntd-btn {
    margin: 1.75rem auto 0;
    width: 8.8rem;
    height: 2.5rem;
    font-size: 0.9rem;
  }
  .modal-download .form-privacy {
    margin: 2rem 0 0;
  }
}
@media (max-width: 991.98px) {
  .ptdet-nav-wrapper {
    height: 1.2rem;
    top: 1.1rem;
  }
  .ptdet-nav-place {
    height: 1.2rem;
  }
  .ptdet-nav-swiper {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .ptdet-nav-swiper .swiper-slide > * {
    min-width: 1.8rem;
    height: 0.6rem;
    padding: 0 0.24rem;
    border-radius: 0.3rem;
  }
  .ptdet-nav-ctrl {
    width: 1.25rem;
    top: 0;
    bottom: 0;
  }
  .ptdet-nav-ctrl .bi {
    width: 10px;
    height: 14px;
  }
  .ptdet-nav-ctrl.next {
    background: -webkit-linear-gradient(179.68deg, #FFFFFF 49.97%, rgba(255, 255, 255, 0) 98.98%);
    background: linear-gradient(270.32deg, #FFFFFF 49.97%, rgba(255, 255, 255, 0) 98.98%);
  }
  .ptdet-nav-ctrl.next .bi {
    right: 0.4rem;
  }
  .ptdet-nav-ctrl.prev {
    background: -webkit-linear-gradient(359.68deg, #FFFFFF 49.97%, rgba(255, 255, 255, 0) 98.98%);
    background: linear-gradient(90.32deg, #FFFFFF 49.97%, rgba(255, 255, 255, 0) 98.98%);
  }
  .ptdet-nav-ctrl.prev .bi {
    left: 0.4rem;
  }
  .ptdet-topview-layout {
    width: 100vw;
    margin: 0 -0.4rem;
    display: block;
  }
  .ptdet-topview-left {
    padding: 0.45rem 0.4rem 0.3rem;
  }
  .ptdet-topview-right {
    padding: 0.9rem 0.4rem 0.6rem;
  }
  .ptdet-golink-720 {
    left: 0.4rem;
    top: 0.6rem;
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .ptdet-golink-720 .icon {
    width: 1.1rem;
    margin: 0 auto 0.15rem;
  }
  .ptdet-topview-thmubbox {
    padding: 0 -webkit-calc(0.9rem - 4px);
    padding: 0 calc(0.9rem - 4px);
    margin: 0;
  }
  .ptdet-topview-thmub {
    padding: 0 4px;
  }
  .ptdet-topview-thmub .swiper-slide {
    width: 0.9rem;
  }
  .ptdet-topview-ctrl {
    width: 0.45rem;
  }
  .ptdet-topview-ctrl .bi {
    width: 0.45rem;
    height: 0.32rem;
  }
  .ptdet-topview-ctrl.prev {
    left: 0.38rem;
  }
  .ptdet-topview-ctrl.next {
    right: 0.38rem;
  }
  .ptdet-introd-box {
    padding: 0 0 0.3rem;
  }
  .ptdet-introd-series {
    font-size: 0.28rem;
    line-height: 0.32rem;
    margin-bottom: 0.15rem;
  }
  .ptdet-introd-title {
    font-size: 0.6rem;
    line-height: 0.75rem;
  }
  .ptdet-introd-params {
    margin: 0.5rem 0 1.15rem;
    font-size: 0.28rem;
    line-height: 0.32rem;
    min-height: 0;
  }
  .ptdet-introd-params .params-item {
    margin-bottom: 0.2rem;
  }
  .ptdet-introd-params .params-item .tit {
    margin: 0 0.3rem 0 0;
  }
  .ptdet-introd-icolist {
    margin: 1.15rem 0 0;
  }
  .ptdet-introd-icolist img {
    width: 0.8rem;
    height: 0.4rem;
  }
  .ptdet-topview-handle {
    margin: 0.45rem 0 0;
  }
  .ptdet-topview-handle .cntd-btn {
    height: 0.84rem;
    font-size: 0.32rem;
    margin-bottom: 0.3rem;
  }
  .ptdet-topview-handle .cntd-btn .bi {
    width: 0.4rem;
    height: 0.4rem;
    margin: 0 0.18rem 0 0;
  }
  .ptdet-other-box {
    padding: 1.2rem 0 1.4rem;
  }
  .ptdet-spec-sect .rocket-content__inner {
    padding: 0 !important;
  }
  .ptdet-spec-header {
    padding: 0 0.4rem;
    margin-bottom: 0.2rem;
  }
  .ptdet-spec-header .s-text {
    width: 100%;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .ptdet-spec-header .btn-compare {
    width: 1.5rem;
    height: 0.6rem;
    font-size: 0.28rem;
  }
  .ptdet-contact-sect {
    margin: 1.2rem 0 0;
  }
  .ptdet-contact-card {
    height: 4.2rem;
  }
  .ptdet-contact-card .text {
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin: 0.15rem 0 0;
  }
  .ptdet-contact-card .cntd-btn {
    margin: 0.45rem auto 0;
  }
  .modal-download .modal-dialog {
    min-height: 100dvh;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .modal-download .modal-close {
    padding: 0.4rem;
    top: 1rem;
  }
  .modal-download .modal-close .bi {
    width: 0.25rem;
    height: 0.25rem;
  }
  .modal-download .modal-content {
    width: 100%;
    max-width: none;
    padding: 1.2rem 0.4rem 0.68rem;
  }
  .modal-download .modal-header {
    margin-bottom: 0.6rem;
  }
  .modal-download .modal-title {
    font-size: 0.52rem;
    line-height: 0.65rem;
  }
  .modal-download .modal-text {
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin: 0.2rem 0 0;
  }
}
.add-pro-editor {
  padding: 5rem 0 0;
}
.add-pro-editor table {
  width: 100% !important;
  font-size: max(14px, 0.8em);
  line-height: 1.5em;
}
.add-pro-editor table tr:nth-child(1) {
  border-top: 1px solid #111;
}
.add-pro-editor table tr:last-child {
  border-bottom: 1px solid #111;
}
.add-pro-editor table tr td {
  width: 22%;
  border-bottom: solid 1px rgba(17, 17, 17, 0.08);
  min-height: 3rem;
  height: auto;
  padding: 0.5rem 1.2rem;
  -webkit-align-items: center;
          align-items: center;
  border-right: solid 1px #E6E6E6;
}
.add-pro-editor table tr td:nth-child(1) {
  min-width: 0;
  background: none;
  -webkit-flex: none;
          flex: none;
  white-space: nowrap;
}
.add-pro-editor table tr td:last-child {
  width: 100%;
  border-right: solid 0px #E6E6E6;
}
.add-pro-editor table.istable tr td:nth-child(1) {
  background: #F3F4F5;
}

@media (min-width: 992px) {
  .add-pro-editor .rocket-block-text h5 {
    font-size: 2.4rem;
    line-height: 3rem;
    font-weight: bold;
    color: #03234B;
    margin-bottom: 1.5rem;
  }
  .add-pro-editor .rocket-block-text ul {
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: #000;
  }
  .add-pro-editor .rocket-block-text ul li {
    margin-bottom: 0.75rem;
  }
  .add-pro-editor .rocket-block-text ul li:last-child {
    margin-bottom: 0;
  }
  .add-pro-editor .rocket-block-text p {
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: #000;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 991.98px) {
  .add-pro-editor {
    padding: 1rem 0 0;
  }
  .add-pro-editor .rocket-block-text, .add-pro-editor .rocket-classical-text {
    font-size: 0.32rem;
    line-height: 0.56rem;
  }
  .add-pro-editor .rocket-content__inner.pd0 {
    padding: 0 0 0 0 !important;
  }
  .add-pro-editor table {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .add-pro-editor table tr {
    display: -webkit-flex;
    display: flex;
  }
  .add-pro-editor table tr td {
    -webkit-flex: 1;
            flex: 1;
    min-height: 1.34rem;
    height: auto;
    padding: 0.25rem 0.15rem !important;
    display: -webkit-flex;
    display: flex;
  }
  .add-pro-editor table tr td:nth-child(1) {
    width: auto;
    -webkit-flex: 1;
            flex: 1;
    white-space: normal;
    min-width: 0;
  }
  .add-pro-editor table tr td:last-child {
    width: auto;
  }
  .add-pro-editor table.istable tr td:nth-child(1) {
    width: 2.5rem;
    -webkit-flex: none;
            flex: none;
  }
}
/* 自定义样式-首页 */
.index-swiper-box {
  position: relative;
}
.index-swiper-box .swiper-slide {
  overflow: hidden;
}
.index-swiper-box .swiper-wrapper .swiper-slide {
  -webkit-transition-timing-function: cubic-bezier(0.59, 0.18, 0.25, 1) !important;
          transition-timing-function: cubic-bezier(0.59, 0.18, 0.25, 1) !important;
}
.index-swiper-box .rocket-image {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transition: 2s;
  -webkit-transition: 2s;
}
.index-swiper-box .rocket-banner-desc {
  transition: 1s;
  -webkit-transition: 1s;
  opacity: 0;
  transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
}
.index-swiper-box .swiper-slide-active .rocket-image {
  transition: 4s;
  -webkit-transition: 4s;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.index-swiper-box .swiper-slide-active .rocket-banner-desc {
  transition: 1s 0.4s;
  -webkit-transition: 1s 0.4s;
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.index-swiper-box .index-paging-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  bottom: 6em;
  -webkit-justify-content: center;
          justify-content: center;
  z-index: 3;
  gap: 0 0.8em;
}
.index-swiper-box .index-paging-wrap .svgwrap {
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
}
.index-swiper-box .index-paging-wrap .svgwrap i {
  background: url(../images/index-zt.svg) no-repeat;
  background-size: contain;
  width: 9px;
  height: 12px;
}
.index-swiper-box .index-paging-wrap .svgwrap.zt i {
  background: url(../images/index-bf.svg) no-repeat;
}
.index-swiper-box .rocket-swiper-paging {
  bottom: 0em !important;
  position: relative;
  width: auto !important;
  margin: 0;
}
.index-swiper-box .rocket-swiper-paging {
  display: -webkit-flex;
  display: flex;
  gap: 0 0.8em;
}
.index-swiper-box .rocket-swiper-paging .bullet {
  margin: 0 0 !important;
  width: 80px;
  height: 2px;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.5);
}
.index-swiper-box .rocket-swiper-paging .bullet.active {
  background: white;
}
.index-swiper-box .rocket-swiper-control {
  background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 46.3%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 46.3%, rgba(255, 255, 255, 0.3) 100%);
  width: 54px;
  height: 54px;
  display: -webkit-flex;
  display: flex;
}
.index-swiper-box .rocket-swiper-control .bi {
  width: 54px;
  height: 54px;
  background-image: url(../images/index-arrow-left.svg);
  background-size: contain;
  -webkit-mask: initial;
          mask: initial;
  background-color: initial;
}
.index-swiper-box .rocket-swiper-control.rocket-swiper-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.index-banner .full-height-web {
  height: -webkit-calc(100vh + 1rem);
  height: calc(100vh + 1rem);
}
.index-banner .rocket-banner-inner {
  padding-top: 31.0416666667vh !important;
}

@media (min-width: 992px) {
  .index-swiper-box .rocket-swiper-control {
    top: -webkit-calc((100vh - 4rem - 54px) / 2);
    top: calc((100vh - 4rem - 54px) / 2);
  }
  .index-swiper-box .rocket-swiper-control:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  .index-swiper-box .rocket-swiper-control:hover .bi {
    -webkit-mask: initial;
            mask: initial;
    background-color: initial;
  }
}
.index-foot-banner-logo {
  margin-top: -5em;
  position: relative;
  z-index: 2;
}

.index-about-cards {
  position: relative;
  overflow: hidden;
}
.index-about-cards .rocket-block-card::after {
  position: absolute;
  content: "";
  background: url(../images/index_about_bg.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.index-about-cards .index-about-zhezhao {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(2.25em);
          transform: translateY(2.25em);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.index-about-cards .rocket-icon-list {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.index-about-keywords .rocket-keyword-item_data .data-text span {
  font-size: 2.5rem;
  line-height: 0;
  position: relative;
  top: 0.5rem;
}

.index-key-words .rocket-keyword-item_data .data-text {
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
.index-key-words .rocket-keyword-item_data .reartext {
  font-size: 2.5rem;
  color: #107AC0;
  font-weight: 700;
  position: relative;
  top: initial;
  line-height: 1em;
  padding-bottom: 0.85rem;
}

@media (min-width: 992px) {
  .index-about-cards:hover {
    cursor: pointer;
  }
  .index-about-cards:hover .rocket-block-card::after {
    opacity: 1;
  }
  .index-about-cards:hover .index-about-zhezhao {
    -webkit-transform: translateY(0em);
            transform: translateY(0em);
  }
  .index-about-cards:hover .rocket-icon-list {
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  .index-key-words .rocket-keyword-item_data .reartext {
    font-size: 0.7rem;
    line-height: 1em;
    padding-bottom: 0.11rem;
  }
  .index-about-cards .index-about-zhezhao {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
  .index-about-keywords .data-text span {
    font-size: 0.7rem;
    line-height: 0;
    position: relative;
    top: 0.14rem;
  }
  .index-foot-banner-logo {
    margin-top: -2.8rem;
    position: relative;
    z-index: 2;
  }
  .index-swiper-box .rocket-swiper-paging {
    gap: 0 0.12rem;
  }
  .index-swiper-box .rocket-swiper-paging .bullet {
    width: 0.84rem;
    height: 0.04rem;
  }
  .index-swiper-box .index-paging-wrap {
    bottom: 1.92rem;
    gap: 0 0.12rem;
  }
  .index-banner .full-height-web {
    height: -webkit-calc(100vh + 0.33rem) !important;
    height: calc(100vh + 0.33rem) !important;
  }
  .index-banner .rocket-banner-inner {
    padding-top: 4rem !important;
  }
}
.layout-element .index-foot-banner-logo {
  margin-top: 0em;
  position: relative;
  z-index: 2;
}
.layout-element .index-about-cards {
  position: relative;
  overflow: hidden;
}
.layout-element .index-about-cards .index-about-zhezhao {
  position: relative;
  bottom: initial;
  left: initial;
  width: 100%;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.layout-element .index-about-cards .rocket-icon-list {
  opacity: 1;
}

/* 自定义样式-新闻详情 */
.news-detail-top .title {
  font-size: 2.4em;
  line-height: 1.3541666667em;
  font-weight: 700;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #03234B;
}
.news-detail-top .inner {
  padding: 5.75em 0 1em;
  border-bottom: 1px solid #2E3033;
}

.newdet-info {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  margin-top: 1.5rem;
  font-size: 0.8em;
  line-height: 1;
  color: #666;
  text-align: center;
  grid-column-gap: 2rem;
}
.newdet-info img {
  -webkit-flex: none;
          flex: none;
  width: 1.25em;
  display: block;
  margin: 0 4px 0 0;
}
.newdet-info .info {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.newsdet-doc, .news-detail-middle {
  min-height: 50vh;
  padding: 3.5em 0 4.25em;
}
.newsdet-doc .rocket-content__inner, .news-detail-middle .rocket-content__inner {
  max-width: 1000px !important;
}

.news-detail-bottom .rocket-title-xl {
  text-align: center;
  font-size: 2.4em;
  line-height: 1em;
  color: #03234B;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.news-detail-bottom .inner {
  border-top: 1px solid #E1E2E3;
  padding: 3em 0 6.1em;
}

@media (min-width: 992px) {
  .news-detail-middle .rocket-block-text {
    font-size: 0.9rem;
    line-height: 1.6rem;
    color: #111 !important;
  }
}
@media (max-width: 991.98px) {
  .news-detail-bottom {
    overflow: hidden;
  }
  .news-detail-bottom .rocket-title-xl {
    font-size: 0.52rem;
    line-height: 0.65rem;
    margin-bottom: 0.6rem;
    text-align: left;
  }
  .news-detail-bottom .inner {
    border-top: 0;
    padding: 0 0 1.4rem 0;
  }
  .newsdet-doc, .news-detail-middle {
    padding: 0.8rem 0 1.51rem;
  }
  .news-detail-top .title {
    font-size: 0.6rem;
    line-height: 0.72rem;
    text-align: left;
  }
  .news-detail-top .inner {
    padding: 1rem 0 0.3rem;
  }
  .newdet-info {
    text-align: left;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    margin-top: 0.6rem;
    font-size: 0.28rem;
    grid-column-gap: 0.35rem;
  }
  .newdet-info img {
    width: 0.36rem;
  }
}
/* 自定义样式-关于我们 */
.honor-sect .img-item .rocket-image {
  padding: 10px 20px;
  box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.2);
}
.honor-sect .rocket-swiper-paging .bullet {
  background: #71767C;
}
.honor-sect .rocket-image__option .text {
  width: 100%;
}
.honor-sect .rocket-image img {
  position: relative;
}

.about-key-word .rocket-keyword-item_data .data-text {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 0 5px;
}
.about-key-word .rocket-keyword-item_data .reartext {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #111;
  font-weight: 700;
  margin: 0 0;
}

.pab-honor-swiper .rocket-block-image {
  cursor: pointer;
}

@media (min-width: 992px) {
  .honor-sect .rocket-swiper-paging .bullet {
    scale: 0.66667;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .honor-sect .rocket-swiper-paging .bullet.active {
    scale: 1;
    background: #107AC0;
  }
}
@media (max-width: 991.98px) {
  .honor-sect .rocket-swiper-paging .bullet.active {
    background: #107AC0;
  }
  .about-key-word .rocket-keyword-item_data .data-text {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    gap: 0 2.5px;
  }
  .about-key-word .rocket-keyword-item_data .reartext {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .honor-sect .img-item .rocket-image {
    padding: 0.13rem 0.22rem 0.07rem 0.22rem;
  }
}
/* 自定义样式-联系我们 */
/* 自定义样式-社会招聘 */
.p-hrlist .main-box {
  min-height: 0;
}

.public-soso-top {
  padding: 5.7em 0 2.75em;
}
.public-soso-top .rocket-title-xl {
  font-size: 3em;
  line-height: 1;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #03234B;
}
.public-soso-top .input-wrap {
  position: relative;
  width: 46.875vw;
}
.public-soso-top .input-wrap .icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.05em;
  height: 1.1em;
  background: url(../images/soso.svg) no-repeat center;
  background-size: contain;
}
.public-soso-top .input-wrap a {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4.4rem;
  border-radius: 3px;
  background: #107AC0;
  border: 1px solid #107AC0;
  color: #fff;
  font-size: 0.9em;
  line-height: 1;
  font-weight: 500;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  cursor: pointer;
}
.public-soso-top .input-wrap input {
  width: 100%;
  height: 2.5rem;
  border: 1px solid #107AC0;
  border-radius: 3px;
  background: #fff;
  padding: 0 5.5rem 0 2.6rem;
  font-size: 0.9em;
  line-height: 1;
  color: #4D4D4D;
  font-weight: 500;
}
.public-soso-top .input-wrap input::-webkit-input-placeholder {
  color: #999;
}
.public-soso-top .input-wrap input::placeholder {
  color: #999;
}

@media (min-width: 992px) {
  .public-soso-top .input-wrap a:hover {
    background: var(--mt-global-color-blue-hover);
  }
  .hrlist-top .input-wrap a:hover {
    color: #fff;
    background: #0f74b6;
  }
  .hrlist-list .inner-item:hover .item-title, .hrlist-list .inner-item:hover .watch-more span {
    color: var(--mt-global-color-blue) !important;
  }
}
@media (max-width: 991.98px) {
  .public-soso-top {
    padding: 1rem 0 0.8rem 0;
  }
  .public-soso-top .rocket-title-xl {
    font-size: 0.6rem;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .public-soso-top .input-wrap {
    width: 6.7rem;
  }
  .public-soso-top .input-wrap .icon {
    width: 0.35rem;
    height: 0.36rem;
    left: 0.2rem;
  }
  .public-soso-top .input-wrap a {
    width: 1.5rem;
    height: 0.9rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    border-radius: 0.03rem;
  }
  .public-soso-top .input-wrap input {
    height: 0.9rem;
    padding: 0 1.8rem 0 0.74rem;
    border-radius: 0.03rem;
    border: 0.015rem solid #107AC0;
    font-size: 0.28rem;
    line-height: 0.42rem;
    font-weight: 400;
  }
  .public-soso-top .input-wrap input::-webkit-input-placeholder {
    color: #999;
  }
  .public-soso-top .input-wrap input::placeholder {
    color: #999;
  }
}
.hrlist-list {
  min-height: 17.2em;
}

.hrlist-list-wrap {
  background: #EEF1F4;
}
.hrlist-list-wrap .watch-more {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.hrlist-list-wrap .watch-more span {
  font-size: 0.9em;
  line-height: 1;
  color: #666;
}
.hrlist-list-wrap .inner-item {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 2em 0;
  border-bottom: 1px solid #CACBCC;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  cursor: pointer;
}
.hrlist-list-wrap .item-title {
  font-size: 1.6em;
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111;
}
.hrlist-list-wrap .inner {
  padding: 1em 0 5em 0;
}
.hrlist-list-wrap .item-tag-message {
  display: -webkit-flex;
  display: flex;
  gap: 0 1.5rem;
}
.hrlist-list-wrap .item-tag-message span {
  position: relative;
  font-size: 1em;
  line-height: 1;
  color: #111;
  position: relative;
}
.hrlist-list-wrap .item-tag-message span::after {
  position: absolute;
  content: "";
  right: -0.75rem;
  top: 0;
  height: 100%;
  width: 2px;
  background: #444;
}
.hrlist-list-wrap .item-tag-message span:last-child::after {
  opacity: 0;
}

@media (max-width: 991.98px) {
  .hrlist-list-wrap .inner {
    padding: 0.2rem 0 1.4rem 0;
  }
  .hrlist-list-wrap .item-title {
    font-size: 0.32rem;
    line-height: 0.56rem;
    margin-bottom: 0.22rem;
  }
  .hrlist-list-wrap .watch-more span {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .hrlist-list-wrap .item-tag-message {
    gap: 0 0.2rem;
    -webkit-align-items: center;
            align-items: center;
  }
  .hrlist-list-wrap .item-tag-message span {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .hrlist-list-wrap .item-tag-message span::after {
    width: 0.015rem;
    right: -0.09rem;
    height: 0.28rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .hrlist-list-wrap .inner-item {
    padding: 0.52rem 0 0.6rem;
  }
}
.modal-hrDetail {
  padding-right: 0 !important;
}
.modal-hrDetail .modal-close {
  display: -webkit-flex;
  display: flex;
  padding: 1em 3.5em 0 0;
}
.modal-hrDetail .modal-close i {
  -webkit-mask: url(../images/zp-close.svg) no-repeat center/contain;
          mask: url(../images/zp-close.svg) no-repeat center/contain;
  background-color: #2E3C31;
  width: 2.3em;
  height: 2.3em;
}
.modal-hrDetail .pop-item-title {
  font-size: 1.9em;
  line-height: 1.2631578947em;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #03234B;
}
.modal-hrDetail .pop-tag-message {
  display: -webkit-flex;
  display: flex;
  gap: 0 1.2em;
}
.modal-hrDetail .pop-tag-message span {
  font-size: 0.9em;
  line-height: 2em;
  color: #444;
  position: relative;
}
.modal-hrDetail .pop-tag-message span::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0.8rem;
  background: #3A4E3E;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -0.625rem;
}
.modal-hrDetail .pop-tag-message span:last-child::after {
  opacity: 0;
}
.modal-hrDetail .modal-dialog {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.modal-hrDetail .modal-content {
  width: 46.875vw;
  background: #fff;
  margin: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.modal-hrDetail.show .modal-content {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hrDetail-wrap-pop {
  height: 100%;
}
.hrDetail-wrap-pop .inner-message {
  height: 100%;
  padding: 3.25em 3.5em 3.8em 3.5em;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 1.5em 0;
}
.hrDetail-wrap-pop .message-bottom {
  -webkit-flex: 1;
          flex: 1;
  position: relative;
}
.hrDetail-wrap-pop .editor-wrap {
  overflow-y: auto;
  height: 100%;
  position: absolute;
  padding: 0 2.6041666667vw 0 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hrDetail-wrap-pop .editor-wrap::-webkit-scrollbar {
  width: 4px;
}
.hrDetail-wrap-pop .editor-wrap::-webkit-scrollbar-thumb {
  width: 4px;
  background-color: #E4E5E6;
  border-radius: 14px;
}
.hrDetail-wrap-pop .editor-wrap::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 0px;
}
.hrDetail-wrap-pop .editor-wrap::-webkit-scrollbar-track-piece {
  background-color: #fff;
}
.hrDetail-wrap-pop .editor-wrap h3, .hrDetail-wrap-pop .editor-wrap h4, .hrDetail-wrap-pop .editor-wrap h5, .hrDetail-wrap-pop .editor-wrap h6 {
  font-size: 1.2em;
  line-height: 1.5em;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
  margin-top: 1.2rem;
}
.hrDetail-wrap-pop .editor-wrap p {
  font-size: 0.9em;
  line-height: 1.7777777778em;
  color: #444;
}
.hrDetail-wrap-pop .editor-wrap > *:first-child {
  margin-top: 0 !important;
}
.hrDetail-wrap-pop .message-top {
  padding: 0 0.5em 2em 0;
  border-bottom: 1px solid #C1C7CD;
}

.modal-hrDetail::-webkit-scrollbar {
  width: 0px;
}

@media (min-width: 992px) {
  .modal-hrDetail .modal-close:hover i {
    background-color: #107AC0;
  }
}
@media (max-width: 991.98px) {
  .hrDetail-wrap-pop .editor-wrap h3, .hrDetail-wrap-pop .editor-wrap h4, .hrDetail-wrap-pop .editor-wrap h5, .hrDetail-wrap-pop .editor-wrap h6 {
    font-size: 0.4rem;
    line-height: 0.6rem;
    margin-bottom: 0.3rem;
    margin-top: 0.75rem;
  }
  .hrDetail-wrap-pop .editor-wrap p {
    font-size: 0.32rem;
    line-height: 0.54rem;
    margin-bottom: 0rem;
  }
  .hrDetail-wrap-pop .message-top {
    padding: 0 0 0.6rem 0;
  }
  .hrDetail-wrap-pop .inner-message {
    border-radius: 0.16rem;
    padding: 1.14rem 0.4rem 0.8rem 0.4rem;
  }
  .modal-hrDetail .modal-close {
    padding: 0.36rem 0.2rem 0 0rem;
  }
  .modal-hrDetail .pop-tag-message {
    gap: 0 0.6rem;
  }
  .modal-hrDetail .pop-tag-message span {
    font-size: 0.32rem;
    line-height: 0.48rem;
    color: #666;
    font-weight: 400;
  }
  .modal-hrDetail .pop-tag-message span::after {
    right: -0.3rem;
    height: 0.3rem;
  }
  .modal-hrDetail .pop-item-title {
    font-size: 0.52rem;
    line-height: 0.65rem;
    margin-bottom: 0.4rem;
  }
  .modal-hrDetail .modal-content {
    border-radius: 0.16rem 0.16rem 0 0;
  }
  .modal-hrDetail .modal-dialog {
    -webkit-align-items: flex-end;
            align-items: flex-end;
  }
  .modal-hrDetail .modal-content {
    width: 100%;
    height: -webkit-calc(100% - 1.6rem);
    height: calc(100% - 1.6rem);
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
/* 自定义样式- 服务支持-停产待查询*/
.p-service-replace .public-soso-top {
  padding: 5.7em 0 2.5em;
}

.search-alphabet {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  background: #F3F4F5;
}

.alphabet-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
          flex: 1;
}
.alphabet-list .list-item {
  -webkit-flex: 1;
          flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #444;
}
.alphabet-list .list-item.all {
  width: 4.4em;
  -webkit-flex: none;
          flex: none;
}
.alphabet-list .list-item.disable {
  pointer-events: none;
}
.alphabet-list .list-item.disable span {
  color: #ccc;
}
.alphabet-list .list-item.current a {
  background: #107AC0;
}
.alphabet-list .list-item.current span {
  color: #fff;
}
.alphabet-list a {
  height: 3rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  cursor: pointer;
  width: 100%;
}
.alphabet-list span {
  font-size: 0.9em;
  line-height: 1em;
  font-weight: 500;
}

.search-all {
  width: 4.4em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #444;
}
.search-all a {
  height: 3rem;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  cursor: pointer;
}
.search-all span {
  font-size: 0.9em;
  line-height: 1em;
  font-weight: 500;
}

.search-alphabet-wrap {
  margin-bottom: 0.85em;
}

.service-re-reslut {
  padding: 0 0 5em 0;
}
.service-re-reslut .virtual-td {
  border-bottom: 1px solid #E1E2E3;
}
.service-re-reslut .virtual-td .list-item:nth-child(1) {
  width: 21.5277777778%;
  padding-left: 1em;
}
.service-re-reslut .virtual-td .list-item:nth-child(2) {
  width: 18.0555555556%;
}
.service-re-reslut .virtual-td .list-item:nth-child(3) {
  width: 13.1944444444%;
}
.service-re-reslut .virtual-td .list-item:nth-child(4) {
  width: 20.1388888889%;
}
.service-re-reslut .virtual-td .list-item:nth-child(5) {
  width: 19.3055555556%;
}
.service-re-reslut .virtual-td .list-item:nth-child(6) {
  -webkit-flex: 1;
          flex: 1;
}
.service-re-reslut .virtual-td {
  display: -webkit-flex;
  display: flex;
}
.service-re-reslut .virtual-thead {
  background: #107AC0;
}
.service-re-reslut .virtual-thead .title {
  font-size: 0.8em;
  line-height: 1em;
  color: #fff;
  font-weight: bold;
}
.service-re-reslut .virtual-thead .list-item {
  height: 2.25em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.service-re-reslut .virtual-tbody .virtual-td .list-item {
  min-height: 3.8em;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  padding-right: 0.7em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.service-re-reslut .virtual-tbody .virtual-td .list-item .pro-desc {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #666;
}
.service-re-reslut .virtual-tbody .virtual-td .list-item .pro-a-link {
  cursor: pointer;
}
.service-re-reslut .virtual-tbody .virtual-td .list-item .lx-us {
  color: #0075CC !important;
}
.service-re-reslut .virtual-tbody .virtual-td .list-item:nth-child(1) {
  font-weight: bold;
}
.service-re-reslut .virtual-tbody .virtual-td .list-item:nth-child(1) .pro-desc {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #111;
}
.service-re-reslut .load-file {
  display: -webkit-flex;
  display: flex;
  margin-left: 1.45rem;
}
.service-re-reslut .load-file i {
  -webkit-mask: url(../images/load.svg) no-repeat center/contain;
          mask: url(../images/load.svg) no-repeat center/contain;
  background-color: #444;
  width: 0.8rem;
  height: 0.8rem;
}

@media (max-width: 991.98px) {
  .service-re-reslut .virtual-td .list-item:nth-child(1) .pro-desc {
    font-size: 0.36rem !important;
    line-height: 0.36rem !important;
    font-weight: bold !important;
    color: #111;
  }
  .service-re-reslut {
    margin-top: 0;
    padding: 0 0 0rem 0;
    -webkit-flex: 1;
            flex: 1;
  }
  .service-re-reslut .rocket-content__inner {
    padding: 0;
  }
  .service-re-reslut .virtual-tbody .virtual-td {
    padding: 0.51rem 0.4rem 0.6rem;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item {
    padding: 0;
    width: 100% !important;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    min-height: initial;
    margin-bottom: 0.15rem;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item:last-child {
    margin-bottom: 0;
    margin-top: 0.3rem;
    margin-left: auto;
    margin-right: auto;
    min-height: 0.9rem;
    height: auto;
    border: 0.015rem solid #107AC0;
    border-radius: 0.03rem;
    background: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    position: relative;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item:last-child .prefix {
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #107AC0;
    padding-left: 0.32rem;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item:last-child .load-file {
    margin-left: 0;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item:last-child .load-file i {
    width: 0.36rem;
    height: 0.36rem;
    background-color: #107AC0;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item:last-child .pro-desc {
    width: 1.12rem;
    height: 0.9rem;
    border-radius: 0.03rem;
    border-left: 0.015rem solid #107AC0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item .prefix, .service-re-reslut .virtual-tbody .virtual-td .list-item .pro-desc {
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #666;
    font-weight: 500;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item .prefix {
    margin-right: 0.18rem;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item:nth-child(1) {
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0.35rem;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item:nth-child(1) .prefix {
    font-size: 0.36rem;
    line-height: 0.56rem;
    font-weight: 700;
    color: #111;
    margin-right: 0;
    display: none;
  }
  .service-re-reslut .virtual-tbody .virtual-td .list-item:nth-child(1) .pro-a-link {
    font-size: 0.36rem;
    line-height: 0.56rem;
    font-weight: 700;
    color: #111;
  }
  .service-re-reslut .virtual-td {
    -webkit-flex-direction: column;
            flex-direction: column;
    border-bottom: 0.015rem solid #d9d9d9;
  }
  .service-re-reslut .pro-title {
    height: 1rem;
    background: #107AC0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    padding-left: 0.42rem;
  }
  .service-re-reslut .pro-title.is-hidden {
    display: none;
  }
  .service-re-reslut .pro-title span {
    font-size: 0.32rem;
    line-height: 0.54rem;
    color: #fff;
    font-weight: 500;
  }
}
@media (min-width: 992px) {
  .pro-title {
    display: none;
  }
  .service-re-reslut .load-file:hover {
    cursor: pointer;
  }
  .service-re-reslut .load-file:hover i {
    background-color: #0075CC;
  }
  .service-re-reslut .pro-a-link:hover {
    color: #0075CC !important;
  }
  .service-re-reslut .lx-us:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  .service-re-reslut .virtual-tbody .virtual-td:hover {
    background: #F7F8FA;
  }
}
@media (max-width: 991.98px) {
  .alphabet-list .list-item.disable {
    display: none;
  }
  .alphabet-list {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .alphabet-list a {
    height: initial;
  }
  .alphabet-list span {
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
  .alphabet-list .list-item {
    width: 0.4rem;
    padding-bottom: 0.15rem;
  }
  .alphabet-list .list-item.current a {
    background: none;
  }
  .alphabet-list .list-item.current span {
    color: #107AC0;
  }
  .alphabet-list .list-item.all {
    display: none;
    -webkit-flex: auto;
            flex: auto;
    padding-bottom: 0;
  }
  .alphabet-list .list-item:last-child {
    padding-bottom: 0;
  }
  .search-alphabet {
    background: none;
  }
  .search-alphabet-wrap {
    position: sticky;
    right: 0%;
    top: 1.6rem;
    margin-bottom: 0;
    width: 0.4rem;
    z-index: 2;
    padding-bottom: 0rem;
  }
  .search-alphabet-wrap .rocket-content__inner {
    width: 0.4rem;
    height: auto;
    padding: 0;
  }
  .sit-box {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    padding: 0 0 0 0.4rem;
  }
  .p-service-replace .main-box {
    padding-bottom: 1.4rem;
  }
  .p-service-replace .fixed-aside-box {
    display: none;
  }
  .p-service-replace .public-soso-top {
    padding: 1rem 0 0.9rem;
  }
}
/* 自定义样式- 服务支持-文档下载*/
.p-service-download .public-soso-top {
  padding-bottom: 2.5rem;
}

.serve-file-top .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0 0 0.75em 0;
  border-bottom: 2px solid #2E3033;
}
.serve-file-top .title {
  font-size: 1.4em;
  line-height: 1.1428571429em;
  color: #03234B;
  font-weight: 700;
}
.serve-file-top .result-num {
  font-size: 0.8em;
  line-height: 2em;
  color: #444;
  font-weight: 500;
}

.serve-file-bottom {
  padding: 1.25em 0 0 0;
}
.serve-file-bottom .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 0 2.5em;
  padding-bottom: 5em;
}
.serve-file-bottom .inner-l {
  width: 15.5em;
  position: sticky;
  top: 5em;
  left: 0;
}
.serve-file-bottom .inner-r {
  -webkit-flex: 1;
          flex: 1;
}

.filter-list-pc {
  max-height: -webkit-calc(100vh - 5em - 3.5em);
  max-height: calc(100vh - 5em - 3.5em);
  overflow-y: auto;
}
.filter-list-pc::-webkit-scrollbar {
  width: 4px;
}
.filter-list-pc::-webkit-scrollbar-thumb {
  width: 4px;
  background-color: #E4E5E6;
  border-radius: 2px;
}
.filter-list-pc::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 0px;
}
.filter-list-pc::-webkit-scrollbar-track-piece {
  background-color: #fff;
}

.filter-file-header {
  margin: 0 1.5em 0 0;
  padding-bottom: 0.5em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  border-bottom: 1px solid #E1E2E3;
}
.filter-file-header .filter-title {
  font-size: 1em;
  line-height: 1.6em;
  color: #111;
  font-weight: 700;
}
.filter-file-header .reset-filter {
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
}
.filter-file-header .reset-filter a {
  font-size: 0.8em;
  line-height: 1em;
  color: #03234B;
  font-weight: 400;
}

.filter-lv1-list-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  height: 3.3em;
  border-bottom: 1px solid #E1E2E3;
  cursor: pointer;
}
.filter-lv1-list-header .title-l {
  font-size: 0.9em;
  line-height: 1em;
  color: #111;
  font-weight: 500;
}
.filter-lv1-list-header .more-click {
  display: -webkit-flex;
  display: flex;
  margin: 0 5px 0 0;
}
.filter-lv1-list-header .more-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: -webkit-flex;
  display: flex;
}
.filter-lv1-list-header .more-icon::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(7, 7, 7, 0.5);
}
.filter-lv1-list-header .more-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background: rgba(7, 7, 7, 0.5);
}

.filter-list-pc {
  padding: 0 1.5em 0 0;
}

.filter-lv2-list-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  padding: 1.25em 0 1em;
  position: relative;
}
.filter-lv2-list-header .svgwrap {
  width: 0.8em;
  height: 0.8em;
  border: 1px solid #000;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.filter-lv2-list-header .svgwrap i {
  background: url(../images/bingo.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.filter-lv2-list-header .title {
  font-size: 0.8em;
  line-height: 1em;
  color: #111;
  font-weight: 500;
}
.filter-lv2-list-header .title-l {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 0 0.4em;
  cursor: pointer;
}
.filter-lv2-list-header input {
  display: none;
}
.filter-lv2-list-header .more-click {
  display: -webkit-flex;
  display: flex;
  position: absolute;
  cursor: pointer;
  height: 100%;
  right: 0;
  width: 30%;
  z-index: 2;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-align-items: center;
          align-items: center;
  padding-right: 5px;
}
.filter-lv2-list-header .more-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: -webkit-flex;
  display: flex;
}
.filter-lv2-list-header .more-icon::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(7, 7, 7, 0.5);
}
.filter-lv2-list-header .more-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background: rgba(7, 7, 7, 0.5);
}
.filter-lv2-list-header.active .svgwrap {
  background: #107AC0;
  border: 1px solid #107AC0;
}

.filter-lv2-list-item.current .filter-lv2-list-header .more-icon::after {
  opacity: 0;
}
.filter-lv2-list-item .more-lv2 {
  padding: 0 0 1.25em;
  border-bottom: 1px solid #E1E2E3;
  display: none;
}

.filter-lv3-list-item {
  display: -webkit-flex;
  display: flex;
  gap: 0 0.4em;
  padding-left: 1.25em;
  margin-bottom: 1em;
  cursor: pointer;
}
.filter-lv3-list-item.active .svgwrap {
  background: #107AC0;
  border: 1px solid #107AC0;
}
.filter-lv3-list-item:last-child {
  margin-bottom: 0;
}
.filter-lv3-list-item .title {
  font-size: 0.7em;
  line-height: 1.1428571429em;
  color: #444;
  font-weight: 500;
}
.filter-lv3-list-item input {
  display: none;
}
.filter-lv3-list-item .svgwrap {
  width: 0.8em;
  height: 0.8em;
  border: 1px solid #666;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.filter-lv3-list-item .svgwrap i {
  background: url(../images/bingo.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.filter-lv1-list-item.current .filter-lv1-list-header .more-icon::after {
  opacity: 0;
}
.filter-lv1-list-item .more-lv1 {
  display: none;
}

.modal-file-box {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-file-box.fade .modal-content {
  transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.modal-file-box.show .modal-content {
  transform: none;
  -webkit-transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-file-box .modal-dialog {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.modal-file-box .modal-content {
  width: 100%;
  height: 88dvh;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0.16rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.modal-file-box .modal-header {
  width: 100%;
  height: 1.25rem;
  position: relative;
  border-bottom: solid 1px #DBDCDE;
  padding: 0.5rem 0 0.35rem;
  text-align: center;
}
.modal-file-box .modal-title {
  font-size: 0.4rem;
  line-height: 1em;
  font-weight: bold;
}
.modal-file-box .modal-close {
  padding: 0.54rem 0.38rem;
}
.modal-file-box .modal-close .bi {
  width: 0.32rem;
  height: 0.32rem;
}
.modal-file-box .modal-footer {
  width: 100%;
  height: 1.54rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  grid-column-gap: 0.2rem;
  padding: 0 0.4rem;
  background-color: #fff;
  position: relative;
}
.modal-file-box .modal-footer .cntd-btn {
  -webkit-flex: 1;
          flex: 1;
  height: 0.84rem;
}
.modal-file-box .modal-body {
  width: 100%;
  height: -webkit-calc(88dvh - 1.54rem - 1.25rem);
  height: calc(88dvh - 1.54rem - 1.25rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 2rem 1fr;
  position: relative;
}
.modal-file-box .modal-file-aside {
  height: 100%;
  position: sitcky;
  top: 0;
  background-color: #EEF1F4;
  font-size: 0.28rem;
  line-height: 0.38rem;
  color: var(--mt-global-color-black-dark);
}
.modal-file-box .modal-file-aside .swiper-wrapper {
  display: block;
}
.modal-file-box .modal-file-aside .trigger {
  display: block;
  padding: 0.3rem 0.4rem;
}
.modal-file-box .modal-file-aside .swiper-slide {
  height: auto;
}
.modal-file-box .modal-file-aside .swiper-slide:first-child .trigger {
  padding: 0.55rem 0.4rem 0.35rem;
}
.modal-file-box .modal-file-aside .swiper-slide.active {
  color: var(--mt-global-color-blue);
}
.modal-file-box .modal-file-aside .swiper-slide.active .trigger {
  background-color: #fff;
}
.modal-file-box .modal-file-main {
  background-color: #fff;
  position: relative;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

@media (min-width: 992px) {
  .filter-lv1-list-item {
    border-bottom: solid 1px #E1E2E3;
  }
  .filter-lv1-list-item:last-child {
    margin-bottom: 0;
  }
  .filter-lv1-list-item .more-lv1 {
    padding: 0.75rem 0;
    border-top: 1px solid #E1E2E3;
  }
  .filter-lv1-list-header {
    border-bottom: none;
  }
  .filter-lv2-list-item {
    padding: 0;
  }
  .filter-lv2-list-item .more-lv2 {
    padding: 0.25rem 0 1.25rem;
    margin-bottom: 0.75rem;
  }
  .filter-lv2-list-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .filter-lv2-list-header {
    padding: 0.5rem 0 0.75rem;
  }
  .filter-lv1-list-header:hover .title-l {
    color: #107AC0;
  }
  .filter-lv1-list-header:hover .more-icon::after, .filter-lv1-list-header:hover .more-icon::before {
    background: #107AC0;
  }
  .filter-lv2-list-header .more-click:hover .more-icon::after, .filter-lv2-list-header .more-click:hover .more-icon::before {
    background: #107AC0;
  }
  .filter-lv2-list-header .title-l:hover .svgwrap {
    border: 1px solid #107AC0;
  }
  .filter-lv2-list-header .title-l:hover .title {
    color: #107AC0;
  }
  .filter-lv3-list-item:hover .svgwrap {
    border: 1px solid #107AC0;
  }
  .filter-lv3-list-item:hover .title {
    color: #107AC0;
  }
}
@media (max-width: 991.98px) {
  .serve-file-bottom {
    padding: 0 0 1.4rem 0;
  }
  .serve-file-bottom .inner-l {
    display: none;
  }
  .serve-file-top .result-num {
    font-size: 0.32rem;
    line-height: 0.32rem;
    color: #444;
  }
  .serve-file-top .title {
    border-radius: 0.03rem;
    border: 0.015rem solid #107AC0;
    background: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    gap: 0 0.14rem;
    height: 0.9rem;
    margin-bottom: 0.6rem;
  }
  .serve-file-top i {
    background: url(../images/filter.svg) no-repeat;
    background-size: contain;
    width: 0.57rem;
    height: 0.58rem;
  }
  .serve-file-top span {
    font-size: 0.32rem;
    line-height: 0.54rem;
    color: #107AC0;
    font-weight: 500;
  }
  .serve-file-top .inner {
    -webkit-flex-direction: column;
            flex-direction: column;
    padding: 0 0 0.3rem 0;
    border-bottom: 0.015rem solid #D9D9D9;
  }
  .p-service-download .public-soso-top {
    padding: 1rem 0 0.3rem;
  }
  .filter-lv3-list-item {
    padding: 0.2rem 0 0.2rem 0.5rem;
    gap: 0 0.15rem;
    margin-bottom: 0.05rem;
  }
  .filter-lv3-list-item:last-child {
    margin-bottom: 0;
  }
  .filter-lv3-list-item .svgwrap {
    width: 0.3rem;
    height: 0.3rem;
  }
  .filter-lv3-list-item .title {
    font-size: 0.28rem;
    line-height: 0.28rem;
    color: #444;
  }
  .filter-lv2-list-item {
    padding: 0;
    margin: 0 0 0.24rem;
    border: 0;
  }
  .filter-lv2-list-item .more-lv2 {
    padding: 0;
    border: none;
  }
  .filter-lv2-list-header {
    padding: 0.2rem 0 0.2rem;
  }
  .filter-lv2-list-header .more-icon {
    position: relative;
    width: 10px;
    height: 10px;
    display: -webkit-flex;
    display: flex;
  }
  .filter-lv2-list-header .more-icon::after {
    position: absolute;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #444444;
  }
  .filter-lv2-list-header .more-icon::before {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background: #444444;
  }
  .filter-lv2-list-header .svgwrap {
    width: 0.3rem;
    height: 0.3rem;
    border: 0.015rem solid #C9CACC;
  }
  .filter-lv2-list-header .title {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .filter-lv2-list-header .title-l {
    gap: 0 0.15rem;
  }
}
.filter-list-app {
  padding: 0.37rem 0.45rem 0.37rem 0.39rem;
}

.filter-lv2-list-wrap {
  display: none;
}
.filter-lv2-list-wrap:nth-child(1) {
  display: block;
}

.file-load-list {
  padding: 0 0 0em 0;
}
.file-load-list .virtual-table {
  border: 1px solid #E4E5E6;
}
.file-load-list .virtual-td {
  border-bottom: 1px solid #E1E2E3;
}
.file-load-list .virtual-td:last-child {
  border-bottom: 0;
}
.file-load-list .virtual-td .list-item:nth-child(1) {
  width: 90%;
  padding-left: 1em;
}
.file-load-list .virtual-td .list-item:nth-child(2) {
  width: 13.5185185185%;
}
.file-load-list .virtual-td .list-item:nth-child(3) {
  width: 14.0740740741%;
}
.file-load-list .virtual-td .list-item:nth-child(4) {
  width: 10.7407407407%;
}
.file-load-list .virtual-td .list-item:nth-child(5) {
  -webkit-flex: 1;
          flex: 1;
}
.file-load-list .virtual-td {
  display: -webkit-flex;
  display: flex;
}
.file-load-list .virtual-thead {
  background: #107AC0;
}
.file-load-list .virtual-thead .title {
  font-size: 0.8em;
  line-height: 1em;
  color: #fff;
  font-weight: bold;
}
.file-load-list .virtual-thead .list-item {
  height: 2.25em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.file-load-list .virtual-tbody {
  min-height: 15em;
}
.file-load-list .virtual-tbody .virtual-td .list-item {
  min-height: 3.8em;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  padding-right: 0.7em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.file-load-list .virtual-tbody .virtual-td .list-item .pro-desc {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #666;
}
.file-load-list .virtual-tbody .virtual-td .list-item .pro-a-link {
  cursor: pointer;
}
.file-load-list .virtual-tbody .virtual-td .list-item .lx-us {
  color: #0075CC !important;
}
.file-load-list .virtual-tbody .virtual-td .list-item:nth-child(1) {
  font-weight: bold;
}
.file-load-list .virtual-tbody .virtual-td .list-item:nth-child(1) .pro-desc {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #111;
}
.file-load-list .load-file {
  display: -webkit-flex;
  display: flex;
  margin-left: 0em;
  -webkit-flex: 1;
          flex: 1;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  gap: 0 0.25rem;
}
.file-load-list .load-file i {
  -webkit-mask: url(../images/load.svg) no-repeat center/contain;
          mask: url(../images/load.svg) no-repeat center/contain;
  background-color: #444;
  width: 0.8rem;
  height: 0.8rem;
}
.file-load-list .more-version {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #107AC0;
  border-top: 0;
  width: 100%;
  background: #fff;
  z-index: 1;
}
.file-load-list .more-version .item {
  display: -webkit-flex;
  display: flex;
}
.file-load-list .more-version .item:hover a {
  background: #E9EDF7;
}
.file-load-list .more-version a {
  font-size: 0.8rem;
  line-height: 1.4rem;
  color: #111 !important;
  width: 100%;
  padding: 0.25rem 0.9rem 0.25rem 0.9rem;
}

.chosen-version-wrap {
  width: -webkit-calc(100% - 0.3em);
  width: calc(100% - 0.3em);
}

.chosen-version {
  position: relative;
}

.chosen-header {
  border: 1px solid #E1E2E3;
  display: -webkit-flex;
  display: flex;
}
.chosen-header .more-chosen {
  width: 2rem;
  height: 2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  border-left: 1px solid #E1E2E3;
  cursor: pointer;
}
.chosen-header .arrow-down {
  -webkit-mask: url(../images/arrow-down.svg) no-repeat center/contain;
          mask: url(../images/arrow-down.svg) no-repeat center/contain;
  background-color: #121212;
  width: 0.95rem;
  height: 0.7rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (max-width: 991.98px) {
  .file-load-list {
    margin-top: 0;
    padding: 0 0 0rem 0;
    -webkit-flex: 1;
            flex: 1;
  }
  .file-load-list .more-version {
    border: 0;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 0.03rem 0.03rem 0.16rem 0.16rem;
  }
  .file-load-list .more-version a {
    font-size: 0.32rem;
    line-height: 0.32rem;
    padding: 0.25rem 0rem;
    margin: 0 0.4rem 0 0.4rem;
  }
  .file-load-list .more-version .item a {
    border-bottom: 0.015rem solid #F2F3F5;
  }
  .file-load-list .more-version .item:last-child a {
    border-bottom: 0;
  }
  .file-load-list .more-version .item.current a {
    background: none;
    color: #107AC0 !important;
  }
  .file-load-list .virtual-table {
    border: 0;
  }
  .file-load-list .chosen-header {
    border: 0.015rem solid #107AC0;
    border-radius: 0.03rem;
  }
  .file-load-list .chosen-header .arrow-down {
    width: 0.5rem;
    height: 0.36rem;
    background-color: #107AC0;
  }
  .file-load-list .chosen-header .more-chosen {
    width: 1.12rem;
    height: 0.8rem;
    border-left: 0.015rem solid #107AC0;
  }
  .file-load-list .rocket-content__inner {
    padding: 0;
  }
  .file-load-list .chosen-version {
    width: 100%;
  }
  .file-load-list .load-file {
    gap: 0 0.1rem;
    -webkit-justify-content: left;
            justify-content: left;
    padding-left: 0.4rem;
  }
  .file-load-list .load-file span {
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #107AC0;
    font-weight: 500;
  }
  .file-load-list .chosen-header {
    width: 100%;
  }
  .file-load-list .virtual-tbody {
    min-height: 50vh;
  }
  .file-load-list .virtual-tbody .virtual-td {
    padding: 0.54rem 0.4rem 0.6rem;
    border-bottom: 0.015rem solid #D9D9D9;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item {
    padding: 0;
    width: 100% !important;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    min-height: initial;
    margin-bottom: 0.15rem;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item:last-child {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    min-height: 0.9rem;
    height: auto;
    border: 0;
    background: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    position: relative;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item:last-child .prefix {
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #107AC0;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item:last-child .load-file {
    margin-left: 0;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item:last-child .load-file i {
    width: 0.36rem;
    height: 0.36rem;
    background-color: #107AC0;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item:last-child .pro-desc {
    width: 100%;
    height: 0.9rem;
    border-radius: 0.03rem;
    border-left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item .prefix, .file-load-list .virtual-tbody .virtual-td .list-item .pro-desc {
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #666;
    font-weight: 500;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item .prefix {
    margin-right: 0.18rem;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item:nth-child(1) {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item:nth-child(1) .prefix {
    font-size: 0.36rem;
    line-height: 0.48rem;
    font-weight: 700;
    color: #111;
    margin-right: 0;
    margin-bottom: 0.13rem;
    display: none;
  }
  .file-load-list .virtual-tbody .virtual-td .list-item:nth-child(1) .pro-a-link {
    font-size: 0.36rem;
    line-height: 0.48rem;
    font-weight: 700;
    color: #111;
  }
  .file-load-list .virtual-td {
    -webkit-flex-direction: column;
            flex-direction: column;
    border-bottom: 0.015rem solid #d9d9d9;
  }
}
@media (min-width: 992px) {
  .file-load-list .more-version .item:not(.current):hover a {
    color: #107AC0 !important;
    cursor: pointer;
  }
  .file-load-list .load-file:hover {
    cursor: pointer;
    background: #107AC0;
  }
  .file-load-list .load-file:hover span {
    color: #fff;
  }
  .file-load-list .load-file:hover i.icon {
    background-color: #fff;
  }
  .file-load-list .more-chosen:hover {
    border-left: 1px solid #107AC0;
    background: #107AC0;
  }
  .file-load-list .more-chosen:hover .arrow-down {
    background-color: #fff;
  }
  .file-load-list .pro-a-link:hover {
    color: #0075CC !important;
  }
  .file-load-list .lx-us:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  .file-load-list .virtual-tbody .virtual-td:hover {
    background: #F7F8FA;
  }
  .file-load-list .virtual-tbody .virtual-td:hover .chosen-header {
    border: 1px solid #107AC0;
  }
  .file-load-list .virtual-tbody .virtual-td:hover .more-chosen {
    border-left: 1px solid #107AC0;
  }
}
.chosen-version.click .chosen-header {
  border: 1px solid #107AC0;
}
.chosen-version.click .more-chosen {
  border-left: 1px solid #107AC0;
}
.chosen-version.click .load-file {
  background: #fff !important;
}
.chosen-version.click .load-file span {
  color: #107AC0 !important;
}
.chosen-version.click .load-file i.icon {
  background-color: #107AC0 !important;
}
.chosen-version.click .more-chosen {
  background: #107AC0;
}
.chosen-version.click .more-chosen .arrow-down {
  background-color: #fff;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/* 自定义样式- 服务支持-授权代理查询*/
.service-agent-list .service-agent-inner {
  width: 46.875vw;
}
.service-agent-list .virtual-table {
  padding: 0;
  margin: 2.5rem 0 0;
}

.p-service-agent .public-soso-top {
  padding-bottom: 0;
}

.service-agent-inner {
  padding: 0;
}
.service-agent-inner .virtual-td {
  border-bottom: 1px solid #E1E2E3;
}
.service-agent-inner .virtual-td .list-item:nth-child(1) {
  width: 31.1111111111%;
  padding-left: 1em;
}
.service-agent-inner .virtual-td .list-item:nth-child(2) {
  width: 28.8888888889%;
}
.service-agent-inner .virtual-td .list-item:nth-child(3) {
  width: 21.1111111111%;
}
.service-agent-inner .virtual-td .list-item:nth-child(4) {
  -webkit-flex: 1;
          flex: 1;
}
.service-agent-inner .virtual-td {
  display: -webkit-flex;
  display: flex;
}
.service-agent-inner .virtual-thead {
  background: #107AC0;
}
.service-agent-inner .virtual-thead .title {
  font-size: 0.8em;
  line-height: 1em;
  color: #fff;
  font-weight: 500;
}
.service-agent-inner .virtual-thead .list-item {
  height: 2.25em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.service-agent-inner .virtual-tbody .virtual-td .list-item {
  min-height: 3.8em;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  padding-right: 0.7em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.service-agent-inner .virtual-tbody .virtual-td .list-item .pro-desc {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #666;
}
.service-agent-inner .virtual-tbody .virtual-td .list-item .pro-a-link {
  cursor: pointer;
}
.service-agent-inner .virtual-tbody .virtual-td .list-item .lx-us {
  color: #0075CC !important;
}
.service-agent-inner .virtual-tbody .virtual-td .list-item:nth-child(1) .pro-desc {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #111;
  font-weight: 500;
}
.service-agent-inner .load-file {
  display: -webkit-flex;
  display: flex;
  margin-left: 1.45rem;
}
.service-agent-inner .load-file i {
  -webkit-mask: url(../images/load.svg) no-repeat center/contain;
          mask: url(../images/load.svg) no-repeat center/contain;
  background-color: #444;
  width: 0.8rem;
  height: 0.8rem;
}

@media (max-width: 991.98px) {
  .service-agent-inner {
    margin-top: 0;
    padding: 0 0 0rem 0;
    -webkit-flex: 1;
            flex: 1;
  }
  .service-agent-inner .gnull-tips {
    margin-bottom: 0;
  }
  .service-agent-inner .rocket-content__inner {
    padding: 0;
  }
  .service-agent-inner .virtual-tbody .virtual-td {
    padding: 0;
  }
  .service-agent-inner .virtual-tbody .virtual-td .list-item {
    padding: 0;
    width: 100% !important;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    min-height: initial;
    margin-bottom: 0.15rem;
  }
  .service-agent-inner .virtual-tbody .virtual-td .list-item:last-child {
    margin-bottom: 0;
  }
  .service-agent-inner .virtual-tbody .virtual-td .list-item .prefix, .service-agent-inner .virtual-tbody .virtual-td .list-item .pro-desc {
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #666;
    font-weight: 500;
  }
  .service-agent-inner .virtual-tbody .virtual-td .list-item .prefix {
    margin-right: 0.18rem;
  }
  .service-agent-inner .virtual-tbody .virtual-td .list-item:nth-child(1) {
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0.45rem;
  }
  .service-agent-inner .virtual-tbody .virtual-td .list-item:nth-child(1) .prefix {
    font-size: 0.36rem;
    line-height: 1em;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.2rem;
  }
  .service-agent-inner .virtual-tbody .virtual-td .list-item:nth-child(1) .pro-a-link, .service-agent-inner .virtual-tbody .virtual-td .list-item:nth-child(1) .pro-desc {
    font-size: 0.36rem;
    line-height: 1em;
    font-weight: 700;
    color: #111;
  }
  .service-agent-inner .virtual-td {
    -webkit-flex-direction: column;
            flex-direction: column;
    border-bottom: 0.015rem solid #d9d9d9;
  }
  .service-agent-inner .virtual-td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .service-agent-inner .pro-title {
    height: 1rem;
    background: #107AC0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    padding-left: 0.42rem;
  }
  .service-agent-inner .pro-title span {
    font-size: 0.32rem;
    line-height: 0.54rem;
    color: #fff;
    font-weight: 500;
  }
}
@media (min-width: 992px) {
  .service-agent-inner .load-file:hover {
    cursor: pointer;
  }
  .service-agent-inner .load-file:hover i {
    background-color: #0075CC;
  }
  .service-agent-inner .pro-a-link:hover {
    color: #0075CC !important;
  }
  .service-agent-inner .lx-us:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  .service-agent-inner .virtual-tbody .virtual-td:hover {
    background: #F7F8FA;
  }
}
.service-agent-qrcode {
  margin: 4rem 0 0;
}
.service-agent-qrcode .title {
  font-size: 1.4em;
  line-height: 1.1428571429em;
  color: #03234B;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.service-agent-qrcode .desc {
  font-size: 0.9em;
  line-height: 1.5555555556em;
  color: #444;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.agent-qrcode-wrap {
  width: 6.7em;
}
.agent-qrcode-wrap .imgwrap {
  border: 1px solid rgba(16, 122, 192, 0.5);
  box-shadow: 0 -2px 4px 0 rgba(16, 122, 192, 0.25), 0 2px 4px 0 rgba(16, 122, 192, 0.25);
  background: #fff;
  width: 6.7em;
  height: 6.7em;
  padding: 0.5em;
}
.agent-qrcode-wrap .imgwrap img {
  width: 100%;
  height: 100%;
}
.agent-qrcode-wrap p {
  font-size: 0.8em;
  line-height: 1em;
  color: #666;
  font-weight: 400;
  margin-top: 0.45rem;
  text-align: center;
}

.p-service-agent .main-box {
  padding: 0 0 6em 0;
}

@media (max-width: 991.98px) {
  .agent-qrcode-wrap {
    width: 2rem;
  }
  .agent-qrcode-wrap .imgwrap {
    width: 2rem;
    height: 2rem;
    padding: 0.15rem;
  }
  .agent-qrcode-wrap .imgwrap img, .agent-qrcode-wrap .imgwrap canvas {
    width: 1.66rem !important;
    height: 1.66rem !important;
    object-fit: contain;
  }
  .agent-qrcode-wrap p {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin-top: 0.1rem;
  }
  .service-agent-qrcode {
    margin: 1rem 0 0;
  }
  .service-agent-qrcode .title {
    font-size: 0.36rem;
    line-height: 0.36rem;
    margin-bottom: 0.15rem;
    font-weight: 700;
  }
  .service-agent-qrcode .desc {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin-bottom: 0.45rem;
  }
  .service-agent-list .service-agent-inner {
    width: 100%;
  }
  .service-agent-list .virtual-table {
    padding: 0;
    margin: 1rem 0 0;
  }
  .p-service-agent .main-box {
    padding-bottom: 1.4rem;
  }
  .p-service-agent .public-soso-top {
    padding-bottom: 0rem;
  }
}
/* 自定义样式- 服务支持-质量认证 */
.psv-cert-wrap .rocket-widget__multidiv {
  background-repeat: repeat-y;
}

.svcert-sect .rocket-block-image {
  cursor: pointer;
}
.svcert-sect .rocket-image {
  padding: 6px 15px;
}
.svcert-sect .rocket-image img {
  position: relative;
}

.svcert-anchor-nav .trigger {
  width: 13rem;
  height: 4.5rem;
  border: solid 1px #595D64;
  background-color: #fff;
  border-radius: 2.25rem;
  font-weight: 400;
}
.svcert-anchor-nav .navitem.current .trigger {
  background-color: var(--mt-global-color-blue);
  color: #fff;
  font-weight: 400;
}

@media (min-width: 992px) {
  .svcert-anchor-nav .navitem:hover .trigger {
    background-color: var(--mt-global-color-blue);
    color: #fff;
  }
  .svcert-anchor-nav .navitem:hover .item-icon .deft {
    display: none;
  }
  .svcert-anchor-nav .navitem:hover .item-icon .hover {
    display: block;
  }
  .svcert-anchor-nav .trigger {
    transition: all 0s;
    -webkit-transition: all 0s;
  }
  .svcert-anchor-nav .item-icon img {
    transition: all 0s;
    -webkit-transition: all 0s;
  }
  .svcert-anchor-nav .rocket-widget__anchor.is-fixed .trigger {
    width: 12rem;
    height: 3rem;
  }
  .svcert-anchor-nav .rocket-widget__anchor.is-fixed .item-icon {
    margin: 0 0.5rem 0 0;
  }
  .svcert-anchor-nav .rocket-widget__anchor.is-fixed .item-icon img {
    width: 2rem;
    height: 1.4rem;
  }
  .svcert-sect .rocket-image__option {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
}
@media (max-width: 991.98px) {
  .svcert-anchor-nav .rocket-widget__anchor {
    position: static !important;
  }
  .svcert-anchor-nav .rocket-anchor-nav {
    width: 100%;
  }
  .svcert-anchor-nav .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .svcert-anchor-nav .trigger {
    width: 100%;
    height: 1.08rem;
    border-radius: 0.54rem;
  }
  .svcert-sect .rocket-image {
    padding: 0.1rem 0.22rem;
  }
}
/* 自定义样式- 服务支持-全球网络 */
@media (min-width: 992px) {
  .psv-network-tabwrap {
    position: relative;
  }
  .psv-network-tabwrap .rocket-tabPanel-tabbox {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
  }
}
/* 自定义样式- 行业解决 */
.psolt-anchor-nav {
  height: 3.9rem;
  position: absolute;
  left: 0;
  top: 0;
}
.psolt-anchor-nav .rocket-widget__anchor {
  position: fixed;
}
.psolt-anchor-nav .rocket-widget__anchor:not(.is-fixed) {
  display: none;
}

.psolt-keji-swiper .rocket-swiper-box .rocket-image {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transition: all 2s;
  -webkit-transition: all 2s;
}
.psolt-keji-swiper .rocket-swiper-box .rocket-banner-tbox {
  transition: all 1s;
  -webkit-transition: all 1s;
  opacity: 0;
  transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
}
.psolt-keji-swiper .rocket-swiper-box .swiper-slide {
  overflow: hidden;
  transition: all 1.5s cubic-bezier(0.59, 0.18, 0.25, 1);
  -webkit-transition: all 1.5s cubic-bezier(0.59, 0.18, 0.25, 1);
}
.psolt-keji-swiper .rocket-swiper-box .swiper-slide-active .rocket-image {
  transition: all 4s;
  -webkit-transition: all 4s;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.psolt-keji-swiper .rocket-swiper-box .swiper-slide-active .rocket-banner-tbox {
  transition: all 1s 0.4s;
  -webkit-transition: all 1s 0.4s;
  opacity: 1;
  transform: none;
  -webkit-transform: none;
}
.psolt-keji-swiper .rocket-swiper-paging {
  margin: 0;
  height: auto !important;
}
.psolt-keji-swiper .rocket-swiper-paging .bullet {
  height: auto !important;
  opacity: 0.3;
  margin: 0;
  border-radius: 0px;
  background-color: transparent !important;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.psolt-keji-swiper .rocket-swiper-paging .bullet::after {
  content: "";
  width: 100%;
  height: 2px;
  -webkit-flex: none;
          flex: none;
  display: block;
  background-color: #fff;
  position: relative;
}
.psolt-keji-swiper .rocket-swiper-paging .active {
  opacity: 1;
}

.psolt-hangye-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.psolt-hangye-swiper .swiper-slide {
  width: 17.45vw;
}

/* 针对后台 */
.layout-element .psolt-anchor-nav {
  position: relative;
}
.layout-element .psolt-anchor-nav .rocket-widget__anchor {
  position: relative;
}
.layout-element .psolt-anchor-nav .rocket-widget__anchor:not(.is-fixed) {
  display: block;
}

@media (min-width: 992px) {
  .psolt-keji-swiper .rocket-swiper-paging {
    width: 80vw;
    max-width: 1440px;
    bottom: 2.65rem !important;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }
  .psolt-keji-swiper .rocket-swiper-paging .bullet {
    width: 7.5rem;
    padding: 0.5rem 0;
  }
}
@media (max-width: 991.98px) {
  .psolt-anchor-nav {
    height: 1.1rem;
  }
  .psolt-keji-swiper .rocket-swiper-paging {
    bottom: 0 !important;
  }
  .psolt-keji-swiper .rocket-swiper-paging .bullet {
    width: 1.9rem;
    padding: 0.3rem 0;
  }
  .psolt-hangye-swiper .swiper-slide {
    width: 4.46rem;
  }
  .psolt-hangye-swiper .rocket-swiper-paging {
    padding: 0 0.4rem;
    margin: 0.3rem 0 0;
    height: 3px;
    position: static;
  }
  .psolt-hangye-swiper .rocket-swiper-paging .bullet {
    width: auto;
    -webkit-flex: 1;
            flex: 1;
    height: 3px;
    background-color: var(--mt-global-color-black-dark) !important;
    opacity: 0.15;
    margin: 0;
    border-radius: 0px;
  }
  .psolt-hangye-swiper .rocket-swiper-paging .active {
    opacity: 1;
  }
}