@charset "UTF-8";
/*******/
/* 自定义下拉框 */
.byted-select-wrapper {
  width: 100%;
  position: relative;
  z-index: 5;
}
.byted-select-wrapper.has-value .byted-select-input .num {
  display: block;
}
.byted-select-wrapper.is-show {
  z-index: 20;
}
.byted-select-wrapper.is-show .byted-select-arrow .bi {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.byted-select-wrapper.is-show .byted-popover-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(7px);
  -webkit-transform: translateY(7px);
  pointer-events: auto;
}

.byted-select {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.byted-select-input {
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  font-size: clamp(14px, 1rem, 20px);
  line-height: 1.5em;
  --line-height: 1.5em;
  width: 100%;
  height: 2.4rem;
  -webkit-align-items: center;
          align-items: center;
  border-radius: 8px;
  padding: 0 2.3rem 0 1rem;
  border: solid 1px #696969;
  white-space: nowrap;
}
.byted-select-input .num {
  display: none;
}

.byted-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 20;
  color: #555;
}
.byted-select-arrow .bi {
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  background: currentColor;
  -webkit-mask: url("/img/common/sel-down.svg") no-repeat center/contain;
  mask: url("/img/common/sel-down.svg") no-repeat center/contain;
}

.byted-popover-wrapper {
  min-width: 100%;
  position: absolute;
  left: 0;
  top: -webkit-calc(100% + 4px);
  top: calc(100% + 4px);
  background: #fff;
  border-radius: 0px;
  z-index: 20;
  padding: 1rem 1rem 1.6rem 1rem;
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.75em;
  --line-height: 1.75em;
  --gap-row: 1rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  border: 1px solid rgba(151, 151, 151, 0.04);
  background: rgba(0, 0, 0, 0.46);
  box-shadow: 0 6px 12px 0 rgba(0, 84, 179, 0.1);
  backdrop-filter: blur(50px);
}

.byted-popover-inner {
  margin: 0 -0.75rem;
  overflow: hidden;
  overflow-y: auto;
  max-height: -webkit-calc(var(--line-height) * 8 + var(--gap-row) * 7);
  max-height: calc(var(--line-height) * 8 + var(--gap-row) * 7);
}
.byted-popover-inner::-webkit-scrollbar {
  width: 5px;
}
.byted-popover-inner::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.05);
}
.byted-popover-inner::-webkit-scrollbar-thumb:vertical {
  width: 5px;
  background-color: var(--mt-global-color-theme);
  cursor: pointer;
}

.inner-more-select {
  color: #fff;
}

.byted-option-list,
.byted-checkbox-list {
  width: 100%;
  display: grid;
  position: relative;
  grid-gap: var(--gap-row) 0;
}
.byted-option-list > *,
.byted-checkbox-list > * {
  padding: 0 1rem;
}

.byted-option-list .check-icon {
  display: none;
}

@media screen and (min-width: 992px) {
  .byted-popover-wrapper {
    min-width: 13.4rem;
  }
  .byted-option-list li:hover,
  .byted-checkbox-list li:hover {
    color: #7DFEFC;
  }
}
@media screen and (max-width: 991.98px) {
  .byted-select-wrapper.is-show .byted-popover-wrapper {
    transform: translateY(0.2rem);
    -webkit-transform: translateY(0.2rem);
  }
  .byted-select-input {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    height: 1rem;
    padding: 0 1.1rem 0 0.4rem;
    border-radius: 0.1rem;
  }
  .byted-select-arrow {
    right: 0.4rem;
  }
  .byted-select-arrow .bi {
    width: 0.3rem;
    height: 0.3rem;
    -webkit-mask-image: url("/img/common/sel-down_m.svg");
    mask-image: url("/img/common/sel-down_m.svg");
  }
  .byted-select-clear {
    right: 0.28rem;
  }
  .byted-select-clear .bi {
    width: 0.3rem;
    height: 0.3rem;
  }
  .byted-popover-wrapper {
    padding: 0.3rem 0.2rem 0.4rem;
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    border-radius: 0.1rem;
    --gap-row: 0.3rem;
  }
  .byted-popover-inner {
    margin: 0 -0.1rem;
  }
  .byted-option-list > *,
  .byted-checkbox-list > * {
    padding: 0 0.2rem;
  }
}
/****
 * 其他
*****/
/* 提示框 */
.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;
}

#modalCopyUrlBox {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px);
}
#modalCopyUrlBox .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;
  padding: 0 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
}
#modalCopyUrlBox .modal-content {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.65);
  padding: 0.56rem 0.3rem 0.5rem;
  text-align: center;
}
#modalCopyUrlBox .icon {
  width: 0.88rem;
  display: block;
  margin: 0 auto 0.2rem;
  color: var(--mt-global-color-theme);
}
#modalCopyUrlBox .title {
  font-size: 0.46rem;
  line-height: 0.64rem;
  font-weight: bold;
}
#modalCopyUrlBox .text {
  font-size: 0.28rem;
  line-height: 0.52rem;
  color: #525252;
}
#modalCopyUrlBox .btnbox {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 0.4rem 0 0;
}
#modalCopyUrlBox .btn-close {
  width: 2.2rem;
  height: 0.64rem;
  display: block;
  position: relative;
  -webkit-flex: none;
          flex: none;
  font-size: 0.28rem;
  line-height: 0.48rem;
  color: #fff;
  background: var(--mt-global-color-theme);
  border-radius: 0.32rem;
}
#modalCopyUrlBox .btn-close > * {
  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;
}

/** 页面置灰 **/
.page-gray {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -webkit-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-top: 4rem;
  gap: 0 1.5rem;
  color: #555;
  white-space: nowrap;
}
.global-paging .arrow {
  -webkit-mask: url("/img/common/page.svg") no-repeat center/contain;
  mask: url("/img/common/page.svg") no-repeat center/contain;
  background-color: currentColor;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0s;
  transition: all 0s;
  display: block;
}
.global-paging .paging-ctrl {
  width: 1.8rem;
  height: 1.8rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  border: solid 2px currentColor;
  border-radius: 50%;
  margin: 0;
  -webkit-transition: all 0s;
  transition: all 0s;
  color: #090722;
  opacity: 1;
}
.global-paging .paging-ctrl .bi {
  background-color: currentColor;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
.global-paging .paging-ctrl.disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: #DEDEDE;
  color: #DEDEDE;
  opacity: 1;
}
.global-paging .paging-num {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.global-paging .paging-num.web {
  gap: 0 1.75rem;
}
.global-paging .paging-num.web a {
  display: block;
  -webkit-flex: none;
          flex: none;
}
.global-paging .paging-num.web a.active {
  font-weight: bold;
  color: #0064A2;
  position: relative;
}
.global-paging .paging-num.web a.active::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 0.1rem;
  background: #0064A2;
  width: 100%;
}
.global-paging .paging-num.app > * {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.global-paging .paging-num.app > *:first-child {
  color: #0064A2;
}
.global-paging .paging-num.app > *:last-child::before {
  content: "/";
  display: block;
  -webkit-flex: none;
          flex: none;
  margin: 0 0.12rem;
}

@media (min-width: 992px) {
  .global-paging .paging-num a:hover {
    color: #0064A2;
  }
  .global-paging .paging-ctrl.prev .bi {
    -webkit-mask: url(/img/common/page-left.svg) no-repeat center/contain;
    mask: url(/img/common/page-left.svg) no-repeat center/contain;
  }
  .global-paging .paging-ctrl.next .arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .global-paging .paging-ctrl.next .bi {
    -webkit-mask: url(/img/common/page-right.svg) no-repeat center/contain;
    mask: url(/img/common/page-right.svg) no-repeat center/contain;
  }
  .global-paging .paging-ctrl:not(.disabled):hover {
    background: #090722;
    border-color: #090722;
    color: #fff;
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  .global-paging {
    margin-top: 0.6rem;
    -webkit-justify-content: center;
            justify-content: center;
    grid-gap: 0 0.6rem;
    font-size: 0.28rem;
    line-height: 0.34rem;
    color: #333;
    font-weight: bold;
  }
  .global-paging .paging-ctrl {
    width: 0.6rem;
    height: 0.6rem;
    border-width: 0px;
    background: #F5F5F5;
  }
  .global-paging .paging-ctrl.disabled {
    background: #F5F5F5;
  }
  .global-paging .paging-ctrl.prev .bi {
    -webkit-mask: url(/img/common/page-left_m.svg) no-repeat center/contain;
    mask: url(/img/common/page-left_m.svg) no-repeat center/contain;
  }
  .global-paging .paging-ctrl.next .bi {
    -webkit-mask: url(/img/common/page-right_m.svg) no-repeat center/contain;
    mask: url(/img/common/page-right_m.svg) no-repeat center/contain;
  }
  .global-paging .paging-ctrl.next .arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
/* 详情分享弹框 */
.wechat-qrcode-box {
  position: relative;
  padding: 10px 0 0;
}

.wechat-qrcode {
  color: #666;
  font-size: 12px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 200px;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px #aaa;
  position: relative;
  padding: 0 0 5px;
}
.wechat-qrcode .share-close {
  background: transparent;
  border: 0;
  color: #000 !important;
  font-size: 25px;
  line-height: 26px;
  display: block;
  position: absolute;
  right: 2px;
  top: -2px;
  display: none;
}
.wechat-qrcode .toptext {
  background-color: #f3f3f3;
  color: #777;
  font-size: 12px;
  height: 26px;
  line-height: 26px;
}
.wechat-qrcode .qrcode {
  margin: 5px auto;
  width: 138px;
}
.wechat-qrcode .qrcode img {
  width: 100%;
  height: auto;
  display: block;
}
.wechat-qrcode .bottext {
  color: #666;
  font-size: 1em;
  line-height: 1.95em;
}

.addbold {
  font-weight: 600;
}

.public-banner {
  overflow: hidden;
}
.public-banner .imgwrap {
  height: 47.0486111111vw;
}
.public-banner .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.public-banner .swiper-slide {
  position: relative;
  background: #000;
}
.public-banner .imgup-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  color: #fff;
}
.public-banner .global-inner {
  padding: 0 0 0 0;
}
.public-banner .title {
  font-size: clamp(2.2rem, 3.7vw, 3.2rem);
  line-height: 1.25em;
  --line-height: 1.25em;
}
.public-banner .title strong {
  color: #7DFEFC;
}
.public-banner .desc {
  font-size: clamp(14px, 1.1rem, 22px);
  line-height: 1.55em;
  --line-height: 1.55em;
  margin: clamp(10px, 1.7361111111vw, 30px) 0 0 0;
}

@media (min-width: 992px) {
  .public-banner .global-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
  }
  body.banner-h412 .public-banner .title {
    color: #080A10;
  }
  body.banner-h412 .public-banner .desc {
    color: #5E6774;
    margin: clamp(0px, 0.9837962963vw, 17px) 0 0 0;
    font-size: clamp(14px, 0.95rem, 19px);
    line-height: 1.68em;
    --line-height: 1.68em;
  }
  body.banner-h412 .public-banner .global-inner {
    padding: clamp(0px, 5.787037037vw, 100px) 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
  }
  body.banner-h412 .public-banner .imgwrap {
    height: clamp(300px, 23.8425925926vw, 412px);
  }
  body.banner-h404 .public-banner .title {
    color: #080A10;
  }
  body.banner-h404 .public-banner .desc {
    color: #5E6774;
    margin: clamp(0px, 0.9837962963vw, 17px) 0 0 0;
    font-size: clamp(14px, 0.95rem, 19px);
    line-height: 1.68em;
    --line-height: 1.68em;
    max-width: 27rem;
  }
  body.banner-h404 .public-banner .global-inner {
    padding: clamp(0px, 6.712962963vw, 116px) 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  body.banner-h404 .public-banner .imgwrap {
    height: clamp(300px, 23.3796296296vw, 404px);
  }
  body.banner-h400 .public-banner {
    background: #13171D;
  }
  body.banner-h400 .public-banner .global-inner {
    -webkit-justify-content: center;
            justify-content: center;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  body.banner-h400 .public-banner .imgwrap {
    height: clamp(0px, 23.1481481481vw, 400px);
  }
  body.banner-h400 .public-banner .date {
    font-size: clamp(14px, 0.8rem, 16px);
    line-height: 1.5em;
    --line-height: 1.5em;
    margin: 0.6rem 0 0 0;
  }
  body.banner-h520 .public-banner .tag {
    font-size: 14px;
    line-height: 21px;
    --line-height: if(unitless($lineHeight), 21px, $lineHeight);
    color: #8DE6F1;
    margin: 0 0 0.7rem 0;
  }
  body.banner-h520 .public-banner .date {
    font-size: 14px;
    line-height: 20px;
    --line-height: if(unitless($lineHeight), 20px, $lineHeight);
    color: rgba(230, 237, 244, 0.72);
    margin: 0.9rem 0 0 0;
  }
  body.banner-h520 .public-banner .global-inner {
    padding: 0 0 clamp(0px, 0vw, 0px) 0;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  body.banner-h520 .public-banner .imgwrap {
    height: clamp(300px, 30.0925925926vw, 520px);
  }
  body.banner-h540 .public-banner .global-inner {
    padding: 0 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }
  body.banner-h540 .public-banner .imgwrap {
    height: clamp(0px, 31.25vw, 540px);
  }
  body.banner-100vh .public-banner .global-inner {
    padding: 0 0 clamp(0px, 2.6041666667vw, 45px) 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
  }
  body.banner-100vh .public-banner .imgwrap {
    height: 100vh;
  }
  body.banner-100vh .public-banner .slide-down-text {
    position: absolute;
    left: 0;
    bottom: 5.2631578947vh;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    color: #fff;
    width: 100%;
  }
  body.banner-100vh .public-banner .inner-slide-cp {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    gap: 0.5rem 0;
  }
}
.icon-mouse {
  -webkit-mask: url("/img/images/mouse.svg") no-repeat center/contain;
  mask: url("/img/images/mouse.svg") no-repeat center/contain;
  background-color: currentColor;
  width: 1.05rem;
  height: 1.05rem;
  -webkit-transition: all 0s;
  transition: all 0s;
  display: block;
}

@media (max-width: 991.98px) {
  .public-banner .imgup-text {
    position: relative;
    min-height: 9rem;
  }
  .public-banner .imgwrap {
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  .public-banner .title {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
  .public-banner .global-inner {
    padding-bottom: 0.8rem !important;
    padding-top: 5.4rem !important;
  }
  .public-banner .desc {
    margin: 0.3rem 0 0 0;
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  body.banner-h520 .public-banner .tag {
    font-size: 0.3rem;
    line-height: 0.4rem;
    color: #8DE6F1;
    margin-bottom: 0.2rem;
  }
  body.banner-h520 .public-banner .date {
    color: rgba(230, 237, 244, 0.72);
    font-size: 0.24rem;
    line-height: 0.36rem;
    margin-top: 0.4rem;
  }
  body.banner-h520 .public-banner .imgup-text {
    min-height: 6.12rem;
  }
  body.banner-h520 .public-banner .global-inner {
    padding-bottom: 0.5rem !important;
    padding-top: 2.43rem !important;
  }
  body.banner-h400 .public-banner .date {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    margin: 0.3rem 0 0 0;
  }
  .p-tech-list .public-banner .title {
    font-size: 0.56rem;
    line-height: 0.68rem;
  }
}
.desc-18-28 {
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.56em;
  --line-height: 1.56em;
}

.title-56-68 {
  font-size: clamp(1.8rem, 3.24vw, 2.8rem);
  line-height: 1.21em;
  --line-height: 1.21em;
}

.public-banner .global-inner:not(.animated),
.public-gos-part .inner:not(.animated),
.news-list:not(.animated),
.inter-pain:not(.animated) {
  opacity: 0;
}

.layout-element .public-banner .global-inner:not(.animated),
.layout-element .public-gos-part .inner:not(.animated),
.layout-element .news-list:not(.animated),
.layout-element .inter-pain:not(.animated) {
  opacity: 1;
}

/* 动态组件-示例 */
/* 自定义样式-新闻列表 */
.public-menu-change {
  background: #fff;
  margin-top: -1.6rem;
  display: none;
}
.public-menu-change .inner {
  border-radius: 18px;
  border: 1px solid rgba(231, 235, 240, 0.88);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px 0 rgba(12, 18, 28, 0.04), 0 1px 6px 0 rgba(12, 18, 28, 0.02);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 1.15rem 1rem;
}
.public-menu-change .inner > * {
  min-width: 0px;
}
.public-menu-change .swiper-slide > * {
  display: block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 228, 234, 0.94);
  background: rgba(251, 252, 253, 0.96);
  min-width: 4.2rem;
  text-align: center;
}
.public-menu-change .swiper-slide.active {
  color: #fff;
}
.public-menu-change .swiper-slide.active > * {
  background: #090722;
}

@media (min-width: 992px) {
  .menu-swiper .swiper-wrapper {
    gap: 0 0.5rem;
  }
  .menu-swiper .swiper-slide {
    width: auto;
  }
  .menu-swiper .swiper-slide:not(.active):hover {
    cursor: pointer;
  }
  .menu-swiper .swiper-slide:not(.active):hover > * {
    border: 1px solid #090722;
  }
}
.icon-right {
  -webkit-mask: url("/img/images/news-more.svg") no-repeat center/contain;
  mask: url("/img/images/news-more.svg") no-repeat center/contain;
  background-color: currentColor;
  width: 0.35rem;
  height: 0.55rem;
  -webkit-transition: all 0s;
  transition: all 0s;
  display: block;
}

.news-list-wrap {
  min-height: 5rem;
  padding: 2.85rem 0 5rem 0;
  background: -webkit-linear-gradient(top, #FFF 0%, #FBFCFD 100%);
  background: linear-gradient(180deg, #FFF 0%, #FBFCFD 100%);
}
.news-list-wrap .sm-inner {
  max-width: 66rem;
}

.news-list .inner-item {
  display: grid;
  grid-template-columns: 9.5454545455% 1fr;
}
.news-list .date-prex {
  margin: 0.05rem 0 0 0;
  color: #090722;
}
.news-list .day {
  font-size: clamp(1.4rem, 2.78vw, 2.4rem);
  line-height: 1.25em;
  --line-height: 1.25em;
  font-weight: 600;
}
.news-list .item-tuwen {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  width: 100%;
  gap: 0 clamp(0px, 4.5138888889vw, 78px);
}
.news-list .item-tag {
  color: #2F318B;
  margin: 0 0 0.6rem 0;
}
.news-list .item-desc {
  margin: 0.95rem 0 0 0;
  color: #090722;
  max-height: 3.12em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-list .item-title {
  font-weight: 600;
}
.news-list .item-more {
  display: -webkit-flex;
  display: flex;
  gap: 0 0.5rem;
  -webkit-align-items: center;
          align-items: center;
  margin: 1rem 0 0 0;
}
.news-list .item-content {
  -webkit-flex: 1;
          flex: 1;
}
.news-list .item-imgwrap {
  width: 24.2077464789%;
  margin-top: clamp(0px, 1.1574074074vw, 20px);
}
.news-list .item-r {
  padding: 2.5rem 0 1.6rem clamp(0px, 3.3564814815vw, 58px);
  position: relative;
}
.news-list .item-r::after {
  position: absolute;
  content: "";
  background: #D7DEE5;
  left: 0;
  bottom: 0;
  height: 0.5px;
  width: 100%;
}
.news-list .item-img {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 236/144;
}
.news-list .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.news-list .box {
  padding: 2.55rem 0 0 0;
  margin-left: clamp(0px, 0vw, 0px);
  height: 100%;
  position: relative;
}
.news-list .box::after {
  position: absolute;
  content: "";
  background: #D7DEE5;
  left: 0;
  bottom: 0;
  height: 0.5px;
  width: 100%;
}
.news-list .item-l {
  position: relative;
}
.news-list .item-l::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 0.5px;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(226, 232, 238, 0.2) 0%, rgba(226, 232, 238, 0.88) 8%, rgba(226, 232, 238, 0.88) 92%, rgba(226, 232, 238, 0.2) 100%);
  background: linear-gradient(180deg, rgba(226, 232, 238, 0.2) 0%, rgba(226, 232, 238, 0.88) 8%, rgba(226, 232, 238, 0.88) 92%, rgba(226, 232, 238, 0.2) 100%);
}

@media (min-width: 992px) {
  .news-list .inner-item:hover {
    cursor: pointer;
  }
  .news-list .inner-item:hover .item-title.day {
    color: #0064A2;
  }
  .news-list .inner-item:hover .item-more .pub-btn-white-solid {
    background-color: #1E1F87;
    border-color: #0064A2;
    color: #fff;
    border: 0;
  }
  .news-list .inner-item:hover .item-img img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
@media (max-width: 991.98px) {
  .news-list-wrap {
    min-height: 1rem;
    padding: 0.86rem 0 1.4rem 0;
    background: #fff;
  }
  .news-list-wrap .sm-inner {
    max-width: 100%;
  }
  .news-list .inner-item {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.16rem 0;
  }
  .news-list .date-prex {
    margin: 0.01rem 0 0 0;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .news-list .day {
    font-size: 0.48rem;
    line-height: 0.64rem;
    --line-height: 0.64rem;
  }
  .news-list .item-tuwen {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: initial;
            align-items: initial;
    width: 100%;
    gap: 0.42rem 0;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .news-list .item-tag {
    color: #2F318B;
    margin: 0 0 0rem 0;
    line-height: 0.36rem;
    margin-bottom: 0.14rem;
  }
  .news-list .item-desc {
    display: none;
  }
  .news-list .item-title {
    font-weight: 600;
  }
  .news-list .list-item {
    padding: 0.86rem 0 0.8rem 0;
    position: relative;
  }
  .news-list .list-item::after {
    position: absolute;
    content: "";
    left: -0.5rem;
    width: -webkit-calc(100% + 1rem);
    width: calc(100% + 1rem);
    right: -0.5rem;
    height: 0.01rem;
    background: #d7d7d7;
    bottom: 0;
  }
  .news-list .list-item:first-child {
    padding-top: 0;
  }
  .news-list .item-more {
    display: -webkit-flex;
    display: flex;
    gap: 0 0.5rem;
    -webkit-align-items: center;
            align-items: center;
    margin: 0.4rem 0 0 0;
  }
  .news-list .item-content {
    -webkit-flex: 1;
            flex: 1;
  }
  .news-list .item-imgwrap {
    width: 100%;
    margin-top: 0;
  }
  .news-list .item-r {
    padding: 0rem 0 0rem 0rem;
    position: relative;
  }
  .news-list .item-r::after {
    position: absolute;
    content: "";
    background: #D7DEE5;
    left: 0;
    bottom: 0;
    height: 0.5px;
    width: 100%;
    opacity: 0;
  }
  .news-list .item-img {
    position: relative;
    border-radius: 0.24rem;
    overflow: hidden;
    aspect-ratio: 236/144;
  }
  .news-list .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .news-list .box {
    padding: 0rem 0 0 0;
    margin-left: clamp(0px, 0vw, 0px);
    height: 100%;
    position: relative;
  }
  .news-list .box::after {
    opacity: 0;
  }
  .news-list .item-l {
    position: relative;
  }
  .news-list .item-l::after {
    position: absolute;
    opacity: 0;
  }
}
/* 自定义样式-新闻详情 */
.news-del-wrap {
  background: #fff;
  padding: 2.9rem 0 5.3rem;
}
.news-del-wrap .sm-inner {
  max-width: 52rem;
}
.news-del-wrap .news-r {
  padding: 0 clamp(0px, 4.3981481481vw, 76px) 0 0;
  width: 80.3846153846%;
}
.news-del-wrap .news-l {
  -webkit-flex: 1;
          flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  position: sticky;
  top: 4.2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 0.75rem;
}
.news-del-wrap .icon-go-prev {
  -webkit-mask: url("/img/images/go-prev.svg") no-repeat center/contain;
  mask: url("/img/images/go-prev.svg") no-repeat center/contain;
  background-color: currentColor;
  width: 0.45rem;
  height: 0.65rem;
  -webkit-transition: all 0s;
  transition: all 0s;
  display: block;
}
.news-del-wrap .go-prev {
  display: -webkit-flex;
  display: flex;
  gap: 0 0.4rem;
  color: #8A94A0;
  -webkit-align-items: center;
          align-items: center;
}
.news-del-wrap .news-del {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.del-card {
  border-radius: 24px;
  border: 1px solid rgba(230, 235, 240, 0.92);
  background: -webkit-linear-gradient(top, #F8FBFD 0%, #FAFCFE 100%);
  background: linear-gradient(180deg, #F8FBFD 0%, #FAFCFE 100%);
  padding: 1.5rem 1.6rem;
  margin: 1.4rem 0 0 0;
}

.newsdet-doc {
  min-height: 50vh;
}
.newsdet-doc img {
  border-radius: 1.2rem;
  width: 100%;
  margin: 0rem 0 0rem;
}
.newsdet-doc .rocket-content__inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0;
}

.p-newsdel .header {
  background: #000;
}

@media (min-width: 992px) {
  .go-prev:hover {
    color: #0064A2;
    cursor: pointer;
  }
}
@media (max-width: 991.98px) {
  .p-newsdel .rocket-image__option .text {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .news-del-wrap {
    padding: 0.8rem 0 1.6rem;
  }
  .news-del-wrap .sm-inner {
    max-width: 100%;
  }
  .news-del-wrap .rocket-title-md {
    font-size: 0.36rem !important;
    line-height: 0.46rem !important;
  }
  .news-del-wrap .rocket-text-xl {
    font-size: 0.28rem !important;
    line-height: 0.42rem !important;
  }
  .news-del-wrap .rocket-text-xxl {
    font-size: 0.24rem !important;
    line-height: 0.36rem !important;
  }
  .news-del-wrap .news-r {
    padding: 0;
    width: 100%;
  }
  .news-del-wrap .news-l {
    width: 100%;
    position: initial;
    top: initial;
    padding-top: 0;
  }
  .news-del-wrap .icon-go-prev {
    width: 0.24rem;
    height: 0.24rem;
  }
  .news-del-wrap .go-prev {
    gap: 0 0.02rem;
  }
  .news-del-wrap .news-del {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem 0;
  }
  .del-card {
    border-radius: 0.24rem;
    border: 1px solid rgba(230, 235, 240, 0.92);
    background: -webkit-linear-gradient(top, #F8FBFD 0%, #FAFCFE 100%);
    background: linear-gradient(180deg, #F8FBFD 0%, #FAFCFE 100%);
    padding: 0.3rem 0.32rem;
    margin: 0.6rem 0 0 0;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .newsdet-doc {
    min-height: 50vh;
  }
  .newsdet-doc img {
    border-radius: 0.24rem;
    width: 100%;
    margin: 0rem 0 0rem;
  }
}
.other-news {
  background: #F8FAFC;
  padding: 4.8rem 0 4.4rem;
}
.other-news .sm-inner {
  max-width: 67.5rem;
}
.other-news .inner-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.other-news .title {
  color: #10131B;
}
.other-news .more {
  color: #55606D;
}

.other-news-swiper {
  margin: 1.4rem 0 0 0;
}
.other-news-swiper .inner-slide {
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(226, 231, 237, 0.92);
  background: #FFF;
  box-shadow: 0 8px 22px 0 rgba(12, 18, 28, 0.04);
  overflow: hidden;
}
.other-news-swiper .slide-body {
  padding: 1.5rem 1rem 1.75rem;
}
.other-news-swiper .slide-more {
  margin: 1rem 0 0 0;
  color: #2B3340;
}
.other-news-swiper .slide-title {
  height: 2.34em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.other-news-swiper .tag {
  display: -webkit-flex;
  display: flex;
  margin: 0 0 0.6rem 0;
  color: #798390;
}
.other-news-swiper .tag > * {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.other-news-swiper .tag > *::after {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  content: "";
  background: #798390;
  margin: 0 0.4rem;
}
.other-news-swiper .tag > *:last-child::after {
  display: none;
}
.other-news-swiper .slide-img {
  aspect-ratio: 428/258;
  position: relative;
  overflow: hidden;
}
.other-news-swiper .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (min-width: 992px) {
  .other-news .more:hover {
    color: #0064A2;
  }
  .other-news-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0 1.5rem;
  }
  .other-news-swiper .inner-slide:hover .slide-title, .other-news-swiper .inner-slide:hover .slide-more {
    color: #0064A2;
  }
  .other-news-swiper .inner-slide:hover .slide-img img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
@media (max-width: 991.98px) {
  .other-news {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .p-newsdel .head-place {
    display: none;
  }
}
/* 自定义样式-关于我们 */
.p-about .footer {
  margin-top: 20rem;
}

.pab-st-topbox {
  position: relative;
  height: 180vh;
  background: #000;
  color: #fff;
}

.pab-topbox-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.pab-topbox-first {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 1;
  pointer-events: none;
}
.pab-topbox-first .antd-imgs {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pab-topbox-first .antd-imgs .imgs,
.pab-topbox-first .antd-imgs img {
  width: 100%;
  height: 100%;
}
.pab-topbox-first .antd-imgs .imgs {
  position: relative;
}
.pab-topbox-first .antd-imgs img {
  display: block;
  object-fit: contain;
  object-position: center center;
  will-change: transform;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
}
.pab-topbox-first .s-heading-h1 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.pab-topbox-second {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
}

.pab-tpsc-imgs {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pab-tpsc-imgs .imgs,
.pab-tpsc-imgs img {
  width: 100%;
  height: 100%;
}
.pab-tpsc-imgs .imgs {
  position: relative;
}
.pab-tpsc-imgs img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.pab-tpsc-mbox {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.pab-tpsc-mbox > .rocket-content__inner,
.pab-tpsc-mbox .pab-tpsc-grid {
  height: 100%;
}

.pab-tpsc-grid {
  display: grid;
  grid-template-columns: 1fr min(48%, 37.5rem);
  gap: 0;
  padding: 6rem 0 4.75rem;
}

.pab-tpsc-left {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 1rem 0;
}
.pab-tpsc-left .t-en {
  font-weight: 200;
}

.pab-tpsc-right {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.pab-tpsc-word {
  font-weight: 700;
}

.pab-tpsc-text {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: height 0.6s ease;
  -webkit-transition: height 0.6s ease;
}
.pab-tpsc-text .s-text > * + * {
  margin-top: 1.5rem;
}
.pab-tpsc-text .s-text > p:not(:first-child) {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
}
.pab-tpsc-text.is-text-expanded .s-text > p:not(:first-child) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
.pab-tpsc-text.is-text-expanded .s-text > p:not(:first-child):nth-child(2) {
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
}
.pab-tpsc-text.is-text-expanded .s-text > p:not(:first-child):nth-child(3) {
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.pab-tpsc-handle {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.5em;
  --line-height: 1.5em;
  position: relative;
  z-index: 5;
}
.pab-tpsc-handle .handle {
  cursor: pointer;
}
.pab-tpsc-handle .handle > * {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 0 5px;
}
.pab-tpsc-handle .handle .bi {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("/img/common/down-black.svg") no-repeat center/contain;
  mask: url("/img/common/down-black.svg") no-repeat center/contain;
}
.pab-tpsc-handle .btn-text-close {
  display: none;
}
.pab-tpsc-handle .btn-text-close .bi {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.pab-st-video {
  position: relative;
  height: 100vh;
  max-height: 42.5rem;
  color: #fff;
}
.pab-st-video .st-imgs {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pab-st-video .st-imgs .imgs,
.pab-st-video .st-imgs img {
  width: 100%;
  height: 100%;
}
.pab-st-video .st-imgs .imgs {
  position: relative;
}
.pab-st-video .st-imgs img {
  display: block;
  object-fit: cover;
  object-position: center center;
}
.pab-st-video .st-text-box {
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.pab-st-video .st-tbox {
  color: #fff;
  text-align: center;
}
.pab-st-video .sbtit {
  margin-bottom: 0.5rem;
  font-size: clamp(14px, 1.1rem, 22px);
  line-height: 1.27em;
  --line-height: 1.27em;
}
.pab-st-video .btnbox {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 2.75rem;
}
.pab-st-video .rocket-video-btn_play {
  width: 3.6rem;
  height: 3.6rem;
  position: static;
  transform: none;
  -webkit-transform: none;
}
.pab-st-video .rocket-video-btn_play .bi {
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  -webkit-mask: url("/img/common/ic-play-black.svg") no-repeat center/contain;
  mask: url("/img/common/ic-play-black.svg") no-repeat center/contain;
  position: relative;
}

@media (min-width: 992px) {
  .pab-st-video .rocket-video-btn_play:hover {
    opacity: 0.7;
  }
}
.pab-st-history {
  position: relative;
  background: #020330;
}

.pab-hist-sitcky {
  position: sticky;
  top: -4rem;
  height: -webkit-calc(100vh + 8rem);
  height: calc(100vh + 8rem);
  overflow: hidden;
  padding: 8rem 0 6.8rem;
  color: var(--mt-global-color-theme-h);
  background: #020330 url("/img/images/ab-3.webp") no-repeat center top;
  background-size: 100% auto;
  isolation: isolate;
}

.pab-hist-header {
  margin-bottom: 5.1rem;
}
.pab-hist-header h2 {
  color: #fff;
}
.pab-hist-header .s-text {
  margin-top: 1.5rem;
  opacity: 0.7;
}

.pab-hist-body {
  position: relative;
  width: 100%;
  min-height: 22.9rem;
  mix-blend-mode: screen;
}

.hist-flash-box {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  mix-blend-mode: screen;
}
.hist-flash-box .video-box,
.hist-flash-box .video-js,
.hist-flash-box video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent !important;
}
.hist-flash-box .video-box {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
  background: transparent !important;
}
.hist-flash-box .video-js,
.hist-flash-box video,
.hist-flash-box .video-js .vjs-tech {
  object-fit: contain;
  object-position: left center;
  background: transparent !important;
  mix-blend-mode: screen;
}
.hist-flash-box .video-js .vjs-poster,
.hist-flash-box .video-js .vjs-loading-spinner,
.hist-flash-box .video-js .vjs-big-play-button {
  display: none;
}

.hist-swiper {
  position: relative;
  z-index: 2;
  overflow: visible;
}
.hist-swiper .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 0 0.5rem;
  width: -webkit-max-content;
  width: max-content;
}
.hist-swiper .swiper-slide {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.hist-swiper .swiper-slide:nth-child(even) {
  padding-top: 14.2rem;
}
.hist-swiper .slide-box {
  position: relative;
  padding: 0 0 0 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 0 1.5rem;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
}
.hist-swiper .slide-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: -webkit-linear-gradient(top, rgba(125, 254, 252, 0) 0%, #7DFEFC 50%, rgba(125, 254, 252, 0) 100%);
  background: linear-gradient(180deg, rgba(125, 254, 252, 0) 0%, #7DFEFC 50%, rgba(125, 254, 252, 0) 100%);
}
.hist-swiper .swiper-slide.is-enter .slide-box {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.hist-swiper .swiper-slide:nth-child(2).is-enter .slide-box {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}
.hist-swiper .swiper-slide:nth-child(3).is-enter .slide-box {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}
.hist-swiper .swiper-slide.is-leave .slide-box {
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.hist-swiper .slide-text-box {
  padding: 0.7rem 0 0.9rem;
  white-space: nowrap;
}
.hist-swiper .slide-date {
  margin-bottom: 0.65rem;
  color: var(--mt-global-color-theme-light);
  font-weight: 700;
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.33em;
  --line-height: 1.33em;
}
.hist-swiper .slide-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.08vw, 1.8rem);
  line-height: 1.28em;
  --line-height: 1.28em;
}
.hist-swiper .slide-desc {
  margin-top: 1.5rem;
  white-space: nowrap;
  font-size: clamp(14px, 1rem, 20px);
  line-height: 1.5em;
  --line-height: 1.5em;
  height: 4.5em;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
}
.hist-swiper .slide-desc.is-desc-bottom {
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.hist-swiper .slide-desc.list-circle p {
  position: relative;
  padding-left: 0.85rem;
}
.hist-swiper .slide-desc.list-circle p::before {
  content: "";
  position: absolute;
  top: -webkit-calc((1.5em - 0.2rem) / 2);
  top: calc((1.5em - 0.2rem) / 2);
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background: #fff;
}
.hist-swiper .slide-desc.text-more {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 2.3rem;
}
.hist-swiper .slide-media {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 0 1rem;
  margin-top: 1rem;
}
.hist-swiper .rocket-video-btn_play {
  position: absolute;
  top: unset;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  padding: 0.65rem 0.8rem;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  --line-height: if(unitless($lineHeight), 20px, $lineHeight);
  transform: none;
  -webkit-transform: none;
  white-space: nowrap;
}
.hist-swiper .rocket-video-btn_play .vbox {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 0 0.7rem;
}
.hist-swiper .rocket-video-btn_play .bi {
  display: block;
  position: static;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  background: currentColor;
  -webkit-mask: url("/img/common/ic-play-black.svg") no-repeat center/contain;
  mask: url("/img/common/ic-play-black.svg") no-repeat center/contain;
  transform: none;
  -webkit-transform: none;
}
.hist-swiper .rocket-video-image {
  position: relative;
  width: 11.7rem;
  border-radius: 0.6rem;
  box-shadow: 0 0.45rem 0.275rem rgba(0, 0, 0, 0.13);
  overflow: hidden;
  margin: 3.5rem 0 2.7rem;
}
.hist-swiper .rocket-video-image .rocket-image,
.hist-swiper .rocket-video-image .rocket-image img {
  display: block;
  width: 100%;
  aspect-ratio: 234/144;
}
.hist-swiper .rocket-video-image .rocket-image {
  margin: 0;
}
.hist-swiper .rocket-video-image .rocket-image img {
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 1921px) {
  .pab-hist-sitcky {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
  }
}
.pab-st-core {
  position: relative;
  background: #f6f6f8;
}

.pab-core-sticky {
  position: sticky;
  top: 0;
  height: auto;
}

.pab-core-sitem {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3rem 0;
  background: -webkit-linear-gradient(top, #fff 0%, #f6f6f8 100%);
  background: linear-gradient(180deg, #fff 0%, #f6f6f8 100%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.pab-core-sitem:first-child {
  position: relative;
}
.pab-core-sitem:not(:first-child) {
  z-index: 2;
}
.pab-core-sitem .item-box {
  display: grid;
  grid-template-columns: 1fr min(46.56%, 36.5rem);
  -webkit-align-items: center;
          align-items: center;
  gap: 0 5rem;
}
.pab-core-sitem .item-text-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 1.625rem 0;
  -webkit-justify-content: center;
          justify-content: center;
  padding-left: 5rem;
  transform: translateY(2.1rem);
  -webkit-transform: translateY(2.1rem);
}
.pab-core-sitem .s-text {
  min-height: 3.4rem;
  font-size: clamp(14px, 1.1rem, 22px);
  line-height: 1.55em;
  --line-height: 1.55em;
}
.pab-core-sitem .item-imgs {
  overflow: hidden;
  border-radius: 1.6rem;
  aspect-ratio: 730/425;
}
.pab-core-sitem .item-imgs .imgs,
.pab-core-sitem .item-imgs img {
  display: block;
  width: 100%;
  height: 100%;
}
.pab-core-sitem .item-imgs img {
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 991.98px) {
  .pab-st-core {
    background: #f6f6f8;
  }
  .p-about .footer {
    margin-top: 8.7rem;
  }
  .pab-core-sitem {
    padding: 1rem 0;
    background: -webkit-linear-gradient(top, #FFF 3.66%, #F6F6F8 57.39%);
    background: linear-gradient(180deg, #FFF 3.66%, #F6F6F8 57.39%);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  .pab-core-sitem .item-box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.6rem 0;
  }
  .pab-core-sitem .item-text-box {
    display: -webkit-flex;
    display: flex;
    gap: 0.2rem 0;
    padding-left: 0rem;
    transform: translateY(0rem);
    -webkit-transform: translateY(0rem);
  }
  .pab-core-sitem .s-text {
    min-height: 0.48rem;
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
  }
  .pab-core-sitem .item-imgs {
    overflow: hidden;
    border-radius: 0.32rem;
  }
  .pab-topbox-first .s-heading-h1 {
    white-space: nowrap;
    top: 43%;
  }
  .pab-tpsc-grid {
    padding: 1.4rem 0 4.12rem;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.6rem 0;
  }
  .pab-tpsc-left {
    gap: 0.16rem 0;
  }
  .pab-tpsc-word {
    font-size: 0.42rem;
    line-height: 0.54rem;
  }
  .pab-tpsc-tbox {
    margin: 0.6rem 0 0 0;
  }
  .pab-tpsc-text {
    overflow: initial;
  }
  .pab-tpsc-text .rocket-text-lg {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .pab-st-topbox {
    height: auto;
    min-height: 100dvh;
  }
  .pab-tpsc-right {
    -webkit-justify-content: initial;
            justify-content: initial;
  }
  .pab-tpsc-handle {
    display: none;
  }
  .pab-tpsc-text .s-text > p:not(:first-child) {
    opacity: 1;
    margin-top: 0.3rem !important;
    -webkit-transform: initial;
            transform: initial;
  }
  .pab-st-video {
    max-height: 8.5rem;
  }
  .pab-st-video .rocket-video-btn_play {
    width: 0.8rem;
    height: 0.8rem;
  }
  .pab-st-video .btnbox {
    margin: 0.44rem 0 0 0;
  }
  .pab-st-video .sbtit {
    font-size: 0.3rem;
    line-height: 0.4rem;
    margin-bottom: 0.14rem;
  }
  .pab-topbox-sticky {
    height: initial;
  }
  .pab-topbox-first {
    height: 100dvh;
  }
  .pab-topbox-first .antd-imgs img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .pab-topbox-second {
    position: relative;
  }
  .pab-hist-header {
    margin-bottom: 0.57rem;
  }
  .pab-hist-header .s-text {
    margin-top: 0.3rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    opacity: 1;
  }
  .pab-hist-sitcky {
    position: relative;
    height: initial;
    top: 0;
    background: #020330 url(/img/images/tj55.webp) no-repeat center top;
    background-size: 100% auto;
    padding: 1.4rem 0 2rem;
  }
  .pab-hist-body {
    min-height: initial;
    mix-blend-mode: initial;
  }
  .hist-list-box {
    position: relative;
    padding: 0.73rem 0 0 0;
  }
  .hist-list-box::before {
    background: url(/img/images/tj56.webp) no-repeat;
    background-size: 100% auto;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    mix-blend-mode: difference;
  }
  .hist-swiper {
    margin: 0 -0.5rem;
  }
  .hist-swiper .slide-date {
    font-size: 0.28rem;
    line-height: 0.24rem;
    margin-bottom: 0.13rem;
  }
  .hist-swiper .slide-title {
    font-size: 0.42rem;
    line-height: 0.54rem;
  }
  .hist-swiper .slide-box {
    opacity: 1;
    gap: 0.58rem 0;
    padding: 0 0 0 0.2rem;
    -webkit-transform: initial;
            transform: initial;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    height: 100%;
  }
  .hist-swiper .rocket-video-btn_play {
    padding: 0;
    left: 0.24rem;
    bottom: 0.24rem;
    white-space: normal;
  }
  .hist-swiper .rocket-video-btn_play .vbox {
    gap: 0 0.2rem;
    font-size: 0.3rem;
    line-height: 0.4rem;
  }
  .hist-swiper .rocket-video-btn_play .bi {
    width: 0.47rem;
    height: 0.47rem;
  }
  .hist-swiper .rocket-image {
    position: relative;
  }
  .hist-swiper .rocket-image::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: url(/img/images/tj57.webp) no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .hist-swiper .slide-desc {
    margin: 0.22rem 0 0 0;
    font-size: 0.28rem;
    line-height: 0.42rem;
    white-space: normal;
    height: 1.26rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    white-space: nowrap;
  }
  .hist-swiper .slide-desc.list-circle p {
    position: relative;
    padding-left: 0.17rem;
  }
  .hist-swiper .slide-desc.list-circle p::before {
    content: "";
    position: absolute;
    top: 0.17rem;
    left: 0;
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background: #fff;
  }
  .hist-swiper .slide-desc.text-more {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 0.46rem;
  }
  .hist-swiper .swiper-wrapper {
    -webkit-align-items: initial;
            align-items: initial;
    gap: initial;
  }
  .hist-swiper .slide-text-box {
    padding: 0.14rem 0 0rem;
  }
  .hist-swiper .rocket-video-image {
    width: 5rem;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    border-radius: 0.2rem;
    box-shadow: 0 15.577px 9.519px 0 rgba(0, 0, 0, 0.13);
    overflow: hidden;
    margin: 0;
  }
  .hist-swiper .swiper-slide {
    -webkit-flex: initial;
            flex: initial;
    width: auto;
    max-width: 100%;
    padding: 0 0 0 0.3rem;
    height: auto;
  }
  .hist-swiper .swiper-slide:first-child {
    margin-left: 0.5rem;
  }
  .hist-swiper .swiper-slide:last-child {
    min-width: 7.5rem !important;
  }
  .hist-swiper .swiper-slide:nth-child(even) {
    padding-top: 0;
  }
}
@media (min-width: 1921px) {
  .pab-st-video {
    max-height: initial;
    aspect-ratio: 1728/850;
    height: initial;
  }
}
@media (min-width: 2080px) {
  .hist-flash-box .video-js, .hist-flash-box video, .hist-flash-box .video-js .vjs-tech {
    object-fit: cover;
  }
}
/* 自定义样式-联系我们 */
.contact-wrap {
  padding: 6.5rem 0 4rem 0;
  background: url(/img/images/contact-bg.webp) top center;
  background-size: 100% auto;
}
.contact-wrap .img-title {
  margin: 0 0 1.3rem 0;
}
.contact-wrap .img-title img {
  width: 100%;
}
.contact-wrap .sm-inner {
  max-width: 43.7rem;
}
.contact-wrap .inner {
  display: grid;
  grid-template-columns: 1fr 10rem;
  grid-gap: 0 clamp(0px, 3.4722222222vw, 60px);
}
.contact-wrap .inner-r {
  color: #fff;
  margin-top: 6.1rem;
}
.contact-wrap .is-title {
  color: #fff;
  font-weight: 600;
  margin: 0 0 2rem 0;
}
.contact-wrap .other-lx .list-item {
  margin-bottom: 2rem;
}
.contact-wrap .other-lx .list-item:last-child {
  margin-bottom: 0;
}
.contact-wrap .other-lx .item-title {
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.33em;
  --line-height: 1.33em;
  font-weight: 600;
  color: #7DFEFC;
  margin-bottom: 0.8rem;
}
.contact-wrap .item-del-list {
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.75em;
  --line-height: 1.75em;
  color: #fff;
  white-space: nowrap;
}
.contact-wrap .item-del-list .item {
  margin-bottom: 1rem;
}
.contact-wrap .item-del-list .item:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .contact-wrap .other-lx a:hover {
    color: #7DFEFC;
    text-decoration: underline;
  }
}
@media (min-width: 1921px) {
  .contact-wrap {
    background: none;
    position: relative;
  }
  .contact-wrap::before {
    background: url(/img/images/contact-bg.webp) top center;
    background-size: 100% auto;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    content: "";
    -webkit-mask-image: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 992px) {
  .p-contact {
    background: url(/img/images/tj95.webp) no-repeat #000;
    background-size: 100% auto;
  }
  .p-contact .footer {
    margin-top: 0;
    background: none;
  }
  .p-contact .foot-mbox::after {
    mix-blend-mode: exclusion;
  }
  .p-contact .foot-topbox-text {
    display: none;
  }
  .p-contact .foot-topbox-media {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .p-contact {
    background: url(/img/images/tj96.webp) no-repeat #000;
    background-size: 100% auto;
  }
  .p-contact .foot-topbox {
    display: none;
    padding: 3.35rem 0 0.82rem;
  }
  .p-contact .footer {
    background: url(/img/images/tj97.webp) no-repeat bottom;
    background-size: 100% auto;
  }
  .contact-wrap {
    padding: 1.8rem 0 0.83rem 0;
    background: initial;
    background-size: 100% 100%;
  }
  .contact-wrap .img-title {
    margin: 0 0 0.5rem 0;
  }
  .contact-wrap .sm-inner {
    max-width: 100%;
  }
  .contact-wrap .inner {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem 0;
    margin-left: -0.3rem;
    margin-right: -0.3rem;
  }
  .contact-wrap .inner-r {
    color: #fff;
    margin-top: 0rem;
    padding: 0 0.3rem;
  }
  .contact-wrap .is-title {
    margin: 0 0 0.6rem 0;
    font-size: 0.48rem;
    line-height: 0.6rem;
  }
  .contact-wrap .other-lx .list-item {
    margin-bottom: 0.5rem;
  }
  .contact-wrap .other-lx .list-item:last-child {
    margin-bottom: 0;
  }
  .contact-wrap .other-lx .item-title {
    font-size: 0.3rem;
    line-height: 0.4rem;
    --line-height: 0.4rem;
    margin-bottom: 0.3rem;
  }
  .contact-wrap .item-del-list {
    font-size: 0.28rem;
    line-height: 0.42rem;
    --line-height: 0.42rem;
    display: grid;
    grid-template-columns: 3.61rem 1fr;
    grid-gap: 0.2rem 0.2rem;
  }
  .contact-wrap .item-del-list .item {
    margin-bottom: 0rem;
  }
}
.xingyao {
  background: rgba(13, 57, 102, 0.78);
  padding: 2.4rem 2rem 2.85rem;
}
.xingyao .form-group {
  margin: 0;
}
.xingyao .control-label {
  color: #fff;
  margin: 0 0 0.4rem 0;
}
.xingyao .form-group-item {
  margin: 0 0 3rem 0;
}
.xingyao .form-group-item:last-child {
  margin-bottom: 0;
}
.xingyao .form-group-item .title {
  font-size: clamp(1.3rem, 1.62vw, 1.4rem);
  line-height: 1.21em;
  --line-height: 1.21em;
  color: #fff;
  font-weight: bold;
  margin: 0 0 1.75rem 0;
}
.xingyao .byted-select-input {
  border: 0;
  border-bottom: 1px solid #174881;
  background: #04264A;
  border-radius: 0;
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.75em;
  --line-height: 1.75em;
  color: rgba(255, 255, 255, 0.4);
  height: 2.6rem;
  color: #fff;
}
.xingyao .form-control {
  border: 0;
  border-bottom: 1px solid #174881;
  background: #04264A;
  border-radius: 0;
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.75em;
  --line-height: 1.75em;
  color: #fff;
  height: 2.6rem;
}
.xingyao .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.xingyao .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.xingyao .auto-textarea {
  max-height: initial;
  overflow: hidden;
  min-height: 2.6rem;
  padding: 0.6rem 0.85rem 0.6rem;
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.75em;
  --line-height: 1.75em;
}
.xingyao .is-open .byted-popover-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 0s;
  transition: all 0s;
  width: 100%;
}
.xingyao .byted-option-list .current {
  color: #7DFEFC;
  font-weight: bold;
}
.xingyao .byted-option-list li {
  padding: 0;
}
.xingyao .byted-option-list li:not(.current) {
  cursor: pointer;
}
.xingyao .form-group-box {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0.8rem 0.8rem;
}
.xingyao .form-group-box .grid-col-12 {
  grid-column: span 12;
}
.xingyao .form-group-box .grid-col-6 {
  grid-column: span 6;
}
.xingyao .form-apply {
  padding: 0.85rem 0 0 0;
}
.xingyao .apply-privacy .a_link {
  color: #7DFEFC !important;
}
.xingyao .apply-privacy .frm-ctrl-box {
  display: -webkit-flex;
  display: flex;
  gap: 0 0.4rem;
  font-size: 14px;
  line-height: 20px;
  --line-height: if(unitless($lineHeight), 20px, $lineHeight);
  color: #fff;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.xingyao .apply-privacy .icon-check {
  background: url(/img/images/gx.svg) no-repeat;
  background-size: 100% 100%;
  width: 0.7rem;
  height: 0.7rem;
  -webkit-transition: all 0s;
  transition: all 0s;
  display: block;
  margin-top: 0.15rem;
  cursor: pointer;
}
.xingyao .apply-privacy.has-error .icon-check {
  background: url(/img/images/gx-error.svg);
  background-size: 100% 100%;
}
.xingyao .apply-privacy.has-success .icon-check {
  background: url(/img/images/form-gx.svg);
  background-size: 100% 100%;
}
.xingyao .public-buttion-link {
  display: -webkit-flex;
  display: flex;
  margin: 2rem 0 0 0;
}
.xingyao .public-buttion-link .applyData {
  cursor: pointer;
}
.xingyao .icon-arrow {
  -webkit-mask: url("/img/images/input-more.svg") no-repeat center/contain;
  mask: url("/img/images/input-more.svg") no-repeat center/contain;
  background-color: currentColor;
  width: 0.6rem;
  height: 0.55rem;
  -webkit-transition: all 0s;
  transition: all 0s;
  display: block;
  color: #fff;
}
.xingyao .has-error .byted-select-input {
  border-color: var(--mt-global-color-red) !important;
}

@media (min-width: 992px) {
  .apply-privacy .a_link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 991.98px) {
  .xingyao {
    padding: 0.9rem 0.5rem 1rem;
  }
  .xingyao .control-label {
    color: #fff;
    margin: 0 0 0.1rem 0;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .xingyao .form-group {
    margin-bottom: 0;
  }
  .xingyao .form-group-item {
    margin: 0 0 0.9rem 0;
  }
  .xingyao .form-group-item .title {
    font-size: 0.36rem;
    line-height: 0.46rem;
    --line-height: 0.46rem;
    margin: 0 0 0.6rem 0;
  }
  .xingyao .byted-select-input {
    font-size: 0.28rem;
    line-height: 0.42rem;
    --line-height: 0.42rem;
    height: 0.83rem;
    padding: 0 0.17rem;
    color: #fff;
  }
  .xingyao .form-control {
    border-radius: 0;
    font-size: 0.28rem;
    line-height: 0.42rem;
    --line-height: 0.42rem;
    color: #fff;
    height: 0.83rem;
  }
  .xingyao .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  .xingyao .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  .xingyao .auto-textarea {
    max-height: initial;
    overflow: hidden;
    min-height: 0.83rem;
    min-height: initial;
    padding: 0.21rem 0.17rem 0.21rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    --line-height: 0.42rem;
  }
  .xingyao .is-open .byted-popover-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: all 0s;
    transition: all 0s;
    width: 100%;
  }
  .xingyao .byted-option-list .current {
    color: #7DFEFC;
    font-weight: bold;
  }
  .xingyao .byted-option-list li:not(.current) {
    cursor: pointer;
  }
  .xingyao .form-group-box {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 0.3rem 0.3rem;
  }
  .xingyao .form-group-box .grid-col-12 {
    grid-column: span 12;
  }
  .xingyao .form-group-box .grid-col-6 {
    grid-column: span 6;
  }
  .xingyao .form-apply {
    padding: 0.24rem 0 0 0;
  }
  .xingyao .apply-privacy .frm-ctrl-box {
    gap: 0 0.13rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
    --line-height: 0.36rem;
  }
  .xingyao .apply-privacy .icon-check {
    background: url(/img/images/gx.svg) no-repeat;
    background-size: 100% 100%;
    width: 0.24rem;
    height: 0.24rem;
    -webkit-transition: all 0s;
    transition: all 0s;
    display: block;
    margin-top: 0.07rem;
    cursor: pointer;
  }
  .xingyao .apply-privacy.has-error .icon-check {
    background: url(/img/images/gx-error.svg);
    background-size: 100% 100%;
  }
  .xingyao .apply-privacy.has-success .icon-check {
    background: url(/img/images/form-gx.svg);
    background-size: 100% 100%;
  }
  .xingyao .public-buttion-link {
    display: -webkit-flex;
    display: flex;
    margin: 0.6rem 0 0 0;
  }
  .xingyao .public-buttion-link .applyData {
    cursor: pointer;
  }
  .xingyao .icon-arrow {
    -webkit-mask: url("/img/images/input-more.svg") no-repeat center/contain;
    mask: url("/img/images/input-more.svg") no-repeat center/contain;
    background-color: currentColor;
    width: 0.32rem;
    height: 0.32rem;
    -webkit-transition: all 0s;
    transition: all 0s;
    display: block;
    color: #fff;
  }
  .xingyao .has-error .byted-select-input {
    border-color: var(--mt-global-color-red) !important;
  }
}
/* 自定义样式-产品列表页 */
.p-ptlist {
  background: #000;
}

.pt-st-banbox {
  position: relative;
  overflow: hidden;
}
.pt-st-banbox .st-imgs {
  width: 100%;
  max-height: 42.5rem;
  aspect-ratio: 1728/850;
}
.pt-st-banbox .st-imgs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.pt-st-banbox .st-text-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  color: #fff;
}
.pt-st-banbox .st-text-box > * {
  color: #fff;
}

.pt-st-ltbox {
  display: grid;
  gap: 7.5rem;
  padding: 6rem 0 5rem;
}
.pt-st-ltbox > * {
  min-width: 0;
}

.pt-item-box {
  position: relative;
}
.pt-item-box > * {
  min-width: 0;
}
.pt-item-box:nth-child(1) .ptitem-card {
  background: rgba(0, 0, 0, 0.4);
}
.pt-item-box:nth-child(2) .ptitem-card {
  background: rgba(0, 0, 0, 0.4);
}
.pt-item-box:nth-child(2) .ptitem-card .s-heading-h2 {
  background: -webkit-linear-gradient(right, #DA443B 0%, #D5E225 50%, #68D030 100%);
  background: linear-gradient(270deg, #DA443B 0%, #D5E225 50%, #68D030 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pt-item-box:nth-child(3) .ptitem-card {
  background: rgba(0, 0, 0, 0.4);
}
.pt-item-box:nth-child(3) .ptitem-card .s-heading-h2 {
  background: -webkit-linear-gradient(left, #F00 0%, #F6FF00 29.19%, #06FBC2 53.46%, #009EFF 73.06%, #A100FF 96.87%);
  background: linear-gradient(90deg, #F00 0%, #F6FF00 29.19%, #06FBC2 53.46%, #009EFF 73.06%, #A100FF 96.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pt-item-box:last-child .ptitem-bgimgs img {
  object-position: center bottom;
}
.pt-item-box:first-child:not(:last-child) .ptitem-bgimgs img {
  object-position: center top;
}

.ptitem-bgimgs {
  position: absolute;
  z-index: 1;
  top: -6rem;
  right: 0;
  bottom: -5rem;
  left: 0;
}
.ptitem-bgimgs .imgs,
.ptitem-bgimgs img {
  width: 100%;
  height: 100%;
}
.ptitem-bgimgs .imgs {
  position: relative;
}
.ptitem-bgimgs img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.ptitem-card-box {
  position: relative;
  z-index: 2;
}

.ptitem-card {
  position: relative;
  padding: 2.9rem 0;
  border-radius: 1.6rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}
.ptitem-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.05rem;
  border-radius: inherit;
  background: -webkit-linear-gradient(top, #060606 0%, #585858 100%);
  background: linear-gradient(180deg, #060606 0%, #585858 100%);
  pointer-events: none;
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.ptitem-card > * {
  position: relative;
  z-index: 1;
}
.ptitem-card .s-heading-h2 {
  position: absolute;
  z-index: 10;
  top: 3rem;
  left: 2.7rem;
  color: #F5FBFF;
}

.ptitem-card-grid {
  display: grid;
  grid-template-columns: min(50%, 38.5rem) 1fr;
  gap: 0 0rem;
}

.ptitem-card-media {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 992px) {
  .pt-item-box:nth-child(2) .ptitem-card-grid .ptitem-card-media {
    top: 3rem;
  }
  .pt-item-box:nth-child(3) .ptitem-card-grid .ptitem-card-media {
    top: 3rem;
  }
}
@media screen and (min-width: 1921px) {
  .pt-st-banbox .st-imgs {
    max-height: initial;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .ptitem-card-media {
    gap: 0 1.5rem;
  }
}
.ptmedia-color-block {
  position: relative;
  width: 42.4rem;
  height: 28.5rem;
  left: -2.3rem;
}
.ptmedia-color-block .bgimgs {
  width: 100%;
  display: block;
  position: absolute;
  left: 50%;
  top: -2.9rem;
  bottom: -2.9rem;
  z-index: 1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.ptmedia-color-block .bgimgs img {
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.ptmedia-color-block .ptimgs {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ptmedia-color-block .ptimgs::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/img/common/pt-sbg2.webp") no-repeat center center;
  background-size: cover;
  width: 42.4rem;
  height: 28.5rem;
  -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.ptmedia-color-block .ptimgs .imgs {
  position: absolute;
  z-index: 5;
  top: -webkit-calc(50% - 1.2rem);
  top: calc(50% - 1.2rem);
  left: 50%;
  width: 13.9rem;
  height: 13.75rem;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.ptmedia-color-block .ptimgs video, .ptmedia-color-block .ptimgs .gif-img {
  position: absolute;
  z-index: 5;
  top: -webkit-calc(50% - 0rem);
  top: -webkit-calc(50% - 4.35rem);
  top: calc(50% - 4.35rem);
  left: -webkit-calc(50% + 3.4rem);
  left: calc(50% + 3.4rem);
  width: 2.7rem;
  aspect-ratio: 54/37;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 9;
}
.ptmedia-color-block .ptimgs img {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.ptmedia-color-block .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0.92;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.ptmedia-color-block .circle1 {
  z-index: 3;
  width: 13.9rem;
  height: 12.3rem;
  --circle-color: 224, 240, 255;
  background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.62) 16%, rgba(var(--circle-color), 0.88) 48%, rgba(var(--circle-color), 0.42) 76%, rgba(var(--circle-color), 0) 100%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.62) 16%, rgba(var(--circle-color), 0.88) 48%, rgba(var(--circle-color), 0.42) 76%, rgba(var(--circle-color), 0) 100%);
  -webkit-filter: blur(1.8rem);
          filter: blur(1.8rem);
}
.ptmedia-color-block .circle2 {
  z-index: 2;
  width: 22.9rem;
  height: 20.3rem;
  --circle-color: 63, 224, 242;
  background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.38) 14%, rgba(var(--circle-color), 0.76) 44%, rgba(var(--circle-color), 0.34) 76%, rgba(var(--circle-color), 0) 100%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.38) 14%, rgba(var(--circle-color), 0.76) 44%, rgba(var(--circle-color), 0.34) 76%, rgba(var(--circle-color), 0) 100%);
  -webkit-filter: blur(3.2rem);
          filter: blur(3.2rem);
}
.ptmedia-color-block .circle3 {
  z-index: 1;
  width: 42.4rem;
  height: 28.5rem;
  --circle-color: 0, 25, 152;
  background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.2) 16%, rgba(var(--circle-color), 0.62) 46%, rgba(var(--circle-color), 0.24) 78%, rgba(var(--circle-color), 0) 100%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.2) 16%, rgba(var(--circle-color), 0.62) 46%, rgba(var(--circle-color), 0.24) 78%, rgba(var(--circle-color), 0) 100%);
  -webkit-filter: blur(4rem);
          filter: blur(4rem);
}

.light-engine .ptmedia-color-block .ptimgs::after {
  display: none;
}
.light-engine .ptmedia-color-block .ptimgs .imgs {
  width: 18.75rem;
  height: 18.75rem;
  top: -webkit-calc(50% + 1.5rem);
  top: calc(50% + 1.5rem);
}
.light-engine .ptdet-ban-grid_left {
  padding-bottom: 13.9rem;
}
.light-engine.light-engine-style2 .ptdet-ban-grid_left {
  padding-bottom: 10.4rem;
}

.p-light-engine .footer {
  margin-top: -22.05rem;
}
.p-light-engine .ptdet-st-detail {
  padding-top: 2.95rem;
}

.ptmedia-color-control {
  position: absolute;
  z-index: 10;
  bottom: 1rem;
  left: -webkit-calc(50% - 2.1rem);
  left: calc(50% - 2.1rem);
  width: 28.1rem;
  color: rgba(232, 250, 255, 0.7);
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.75em;
  --line-height: 1.75em;
  white-space: nowrap;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.ptmedia-color-control .control-bar {
  position: relative;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: -webkit-linear-gradient(left, #ff0000 0%, #f7ff00 29.19%, #06fbc2 53.46%, #009eff 73.06%, #a200ff 96.87%);
  background: linear-gradient(90deg, #ff0000 0%, #f7ff00 29.19%, #06fbc2 53.46%, #009eff 73.06%, #a200ff 96.87%);
}
.ptmedia-color-control .control-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
  cursor: pointer;
  touch-action: none;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.ptmedia-color-control .text {
  position: absolute;
  top: -webkit-calc(100% + 0.5rem);
  top: calc(100% + 0.5rem);
}
.ptmedia-color-control .t-start {
  left: 0;
}
.ptmedia-color-control .t-end {
  right: 0;
}
.ptmedia-color-control .t-now {
  bottom: -webkit-calc(100% + 1.5rem);
  bottom: calc(100% + 1.5rem);
  right: 0;
  left: 0;
  top: unset;
  color: 232, 250, 255, 0.3;
  font-weight: 700;
  font-size: clamp(2.2rem, 3.7vw, 3.2rem);
  line-height: 1.25em;
  --line-height: 1.25em;
  text-align: center;
}

.ptitem-card-text {
  padding: 3rem 2rem 3.25rem 0;
  color: var(--mt-global-color-theme-h);
  position: relative;
  z-index: 5;
}

.ptitem-card-intro {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  gap: 0 2.5rem;
  margin-bottom: 7.35rem;
}
.ptitem-card-intro .intro-text {
  max-width: 20.9rem;
}

.ptitem-card-params {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2rem;
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.75em;
  --line-height: 1.75em;
}
.ptitem-card-params .params-item {
  min-width: 0;
}
.ptitem-card-params .p-lvtit {
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.33em;
  --line-height: 1.33em;
  font-weight: bold;
}
.ptitem-card-params .p-text {
  margin-top: 5px;
  opacity: 0.7;
}

.pro-gif {
  position: absolute;
  bottom: -2.35rem;
  left: -webkit-calc(50% - 4.65rem);
  left: calc(50% - 4.65rem);
}
.pro-gif .imgwraps {
  width: 8.9rem;
  aspect-ratio: 178/16;
}
.pro-gif .imgwraps img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 992px) {
  .gx-tl {
    margin-top: 0rem;
  }
  .light-engine.light-engine-style1 .ptdet-ban-grid_left {
    padding-bottom: 15.2rem;
  }
  .light-engine.light-engine-style2 {
    min-height: auto;
  }
  .light-engine.light-engine-style2 .ptmedia-color-block .ptimgs .imgs {
    top: -webkit-calc(50% - 5rem);
    top: calc(50% - 5rem);
  }
  .light-engine.light-engine-style2 .ptdet-ban-grid_left {
    padding-top: 0.5rem;
    padding-bottom: 12.05rem;
  }
  .light-engine.light-engine-style3 {
    margin-top: -8.85rem;
  }
  .light-engine.light-engine-style4 {
    margin-top: 0rem;
  }
}
@media (max-width: 991.98px) {
  .light-engine .ptdet-ban-grid_left {
    padding-bottom: 0.56rem;
  }
  .light-engine .ptmedia-color-block .ptimgs .imgs {
    width: 5.2rem;
    height: 5.2rem;
    top: -webkit-calc(50% - 0.3rem);
    top: calc(50% - 0.3rem);
  }
  .light-engine.light-engine-style2 .ptdet-ban-grid_left {
    padding-bottom: 0.56rem;
  }
  .pro-gif {
    bottom: -0.66rem;
    left: -webkit-calc(50% - 1.12rem);
    left: calc(50% - 1.12rem);
  }
  .pro-gif .imgwraps {
    width: 2.28rem;
  }
}
@media (min-width: 992px) {
  .ptitem-bgimgs img {
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
  .pt-item-box:not(:first-child) .ptmedia-color-block .bgimgs img {
    left: -webkit-calc(50% + 0rem);
    left: calc(50% + 0rem);
  }
  .pt-item-box:nth-child(2) .ptmedia-color-block .bgimgs img {
    left: -webkit-calc(50% + 0rem);
    left: calc(50% + 0rem);
  }
  .p-ptlist .footer {
    margin-top: -7.5rem;
  }
}
@media (min-width: 1921px) {
  .pt-item-box:first-child:not(:last-child) .ptitem-bgimgs img {
    object-position: initial;
  }
  .ptitem-bgimgs img {
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (max-width: 991.98px) {
  .pt-st-banbox .st-text-box {
    position: relative;
    min-height: 9rem;
    -webkit-justify-content: initial;
            justify-content: initial;
    -webkit-flex-direction: initial;
            flex-direction: initial;
  }
  .pt-st-banbox .rocket-content__inner {
    padding-bottom: 0.8rem !important;
    padding-top: 5.4rem !important;
  }
  .pt-st-banbox .st-imgs {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-height: initial;
    aspect-ratio: initial;
  }
  .pt-st-ltbox {
    gap: 0rem 0;
    padding: 1rem 0 0rem;
  }
  .ptitem-card-intro {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem 0;
    padding: 0 0.5rem;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    margin-bottom: 0;
  }
  .ptitem-card-intro .intro-text {
    font-size: 0.28rem;
    line-height: 0.42rem;
    max-width: initial;
  }
  .pt-item-box {
    padding: 0.4rem 0 0.4rem;
  }
  .pt-item-box:nth-child(1) {
    padding-top: 0;
  }
  .pt-item-box:nth-child(2) .ptitem-bgimgs {
    top: 0;
  }
  .pt-item-box:nth-child(2) .ptitem-card-grid {
    gap: 0.37rem 0;
  }
  .pt-item-box:nth-child(3) {
    padding-bottom: 1rem;
  }
  .pt-item-box:nth-child(3) .ptitem-bgimgs {
    top: 0;
  }
  .pt-item-box:nth-child(3) .ptitem-card-grid {
    gap: 0.37rem 0;
  }
  .ptitem-card {
    border-radius: 0.32rem;
    padding: 0.86rem 0 0.8rem;
  }
  .ptitem-card::after {
    padding: 0.02rem;
    opacity: 0.2;
  }
  .ptitem-card .s-heading-h2 {
    left: 0.5rem;
    top: 0.6rem;
    line-height: 0.54rem;
  }
  .pt-item-box:nth-child(1) .ptitem-card {
    background: url(/img/images/tj43.webp) no-repeat center center/cover;
  }
  .ptitem-card-params {
    display: none;
  }
  .ptitem-card-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2.22rem 0;
  }
  .ptdet-ban-intro::after {
    opacity: 0;
  }
  .ptmedia-color-control {
    left: 50%;
    width: 5.51rem;
    bottom: -0.88rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .ptmedia-color-control .intro-text {
    font-size: 0.28rem;
    line-height: 0.42rem;
    max-width: initial;
  }
  .ptmedia-color-control .text {
    top: -webkit-calc(100% + 0.16rem);
    top: calc(100% + 0.16rem);
    font-size: 0.24rem;
    line-height: 0.36rem;
    color: rgba(232, 250, 255, 0.6);
  }
  .ptmedia-color-control .t-now {
    top: initial;
    bottom: -webkit-calc(100% + 0.44rem);
    bottom: calc(100% + 0.44rem);
    color: rgba(var(--circle-color), 1);
    --circle-color: 232, 250, 255, 0.3;
  }
  .ptmedia-color-control .control-button {
    width: 0.4rem;
    height: 0.4rem;
  }
  .ptmedia-color-control .control-bar {
    height: 0.17rem;
    border-radius: 0.21rem;
  }
  .ptmedia-color-control .t-now {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }
  .ptmedia-color-block {
    width: 100%;
    left: 0;
    height: 4.36rem;
  }
  .ptmedia-color-block .bgimgs {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    -webkit-transform: initial;
            transform: initial;
  }
  .ptmedia-color-block .bgimgs img {
    width: 7.5rem;
    height: 7.5rem;
  }
  .ptmedia-color-block .circle1 {
    width: 2.14rem;
    height: 1.88rem;
    -webkit-filter: blur(0.6rem);
            filter: blur(0.6rem);
  }
  .ptmedia-color-block .circle2 {
    width: 3.52rem;
    height: 3.12rem;
    -webkit-filter: blur(0.95rem);
            filter: blur(0.95rem);
  }
  .ptmedia-color-block .circle3 {
    width: 6.5rem;
    height: 4.36rem;
    -webkit-filter: blur(1rem);
            filter: blur(1rem);
  }
  .ptmedia-color-block .ptimgs::after {
    background: url(/img/images/tj46.webp) no-repeat center center;
    background-size: contain;
    pointer-events: none;
    width: 100%;
    height: 100%;
  }
  .ptmedia-color-block .ptimgs .imgs {
    width: 2.78rem;
    height: 2.75rem;
    top: -webkit-calc(50% - 0.2rem);
    top: calc(50% - 0.2rem);
  }
  .ptmedia-color-block .ptimgs video, .ptmedia-color-block .ptimgs .gif-img {
    top: 0.46rem;
    width: 0.6rem;
    left: 2.08rem;
  }
  .proisimg .ptmedia-color-block .bgimgs {
    width: auto;
    left: -0.5rem;
    right: -0.5rem;
  }
  .proisimg .ptdet-ban-grid_right {
    gap: 1.68rem;
  }
  .ptitem-card-text {
    padding: 0;
    position: relative;
    z-index: 1;
  }
  .ptitem-bgimgs {
    top: -1rem;
    bottom: 0;
  }
  .p-ptlist .footer {
    margin-top: -1rem;
  }
}
.coming-soon {
  position: relative;
  padding: 2.9rem 0 7.55rem;
}
.coming-soon .bg-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.coming-soon .bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.coming-soon .title {
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.other-pro {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  gap: 0 clamp(100px, 12.3842592593vw, 214px);
  margin-top: 1.9rem;
}
.other-pro .list-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  color: #E8FAFF;
  text-align: center;
}
.other-pro .list-item:nth-child(1) .item-title span {
  background: -webkit-linear-gradient(right, #DA443B 0%, #D5E225 50%, #68D030 100%);
  background: linear-gradient(270deg, #DA443B 0%, #D5E225 50%, #68D030 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.other-pro .list-item:nth-child(2) .item-title span {
  background: -webkit-linear-gradient(left, #F00 0%, #F6FF00 29.19%, #06FBC2 53.46%, #009EFF 73.06%, #A100FF 96.87%);
  background: linear-gradient(90deg, #F00 0%, #F6FF00 29.19%, #06FBC2 53.46%, #009EFF 73.06%, #A100FF 96.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.other-pro .item-desc {
  width: 21.95rem;
  margin-top: 1rem;
}
.other-pro .item-title {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  font-weight: 600;
  margin-top: -0.25rem;
}
.other-pro .item-img {
  position: relative;
  aspect-ratio: 1;
  width: 18rem;
}
.other-pro .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 992px) {
  .light-engine.light-engine-style4 .ptdet-ban-bgimgs {
    -webkit-mask-image: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
  .light-engine.light-engine-style4 .ptdet-ban-grid_left {
    padding-top: 7.3rem;
  }
}
@media (min-width: 1921px) {
  .coming-soon .bg-wrap {
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (max-width: 991.98px) {
  .coming-soon {
    position: relative;
    padding: 1rem 0 1.48rem;
  }
  .coming-soon .bg-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
            align-items: flex-end;
  }
  .coming-soon .bg-wrap img {
    height: auto;
  }
  .coming-soon .title {
    font-weight: 600;
    color: #fff;
    text-align: center;
  }
  .other-pro {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.9rem 0;
    margin-top: 0.5rem;
  }
  .other-pro .list-item {
    width: 100%;
  }
  .other-pro .item-desc {
    width: 5.55rem;
    margin-top: 0.25rem;
  }
  .other-pro .item-title {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    font-weight: 600;
    margin-top: 0.1rem;
  }
  .other-pro .item-img {
    width: 3.6rem;
  }
  .other-pro .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
/* 自定义样式-产品详情 */
.p-ptdet {
  background-color: #000;
}

.ptdet-st-banbox {
  position: relative;
  min-height: 38rem;
  padding-top: 3.5rem;
}

.ptdet-ban-bgimgs {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ptdet-ban-bgimgs .imgs,
.ptdet-ban-bgimgs img {
  width: 100%;
  height: 100%;
}
.ptdet-ban-bgimgs .imgs {
  position: relative;
  -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}
.ptdet-ban-bgimgs img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.ptdet-ban-text {
  position: relative;
  z-index: 10;
  color: var(--mt-global-color-theme-h);
}

.ptdet-ban-grid {
  display: grid;
  grid-template-columns: 1fr min(40.17%, 31.5rem);
  gap: 0;
}

.ptdet-ban-grid_left {
  min-width: 0;
  padding: 5.3rem 0 10.1rem;
  position: relative;
  z-index: 5;
}

.ptdet-ban-grid_right {
  min-width: 0;
  padding: 0.75rem 0 5.2rem;
}

.ptdet-ban-intro {
  position: relative;
  max-width: 46.9rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 0 5rem;
  padding-bottom: 1.75rem;
  margin-bottom: 5.75rem;
}
.ptdet-ban-intro::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #fff 100%);
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  opacity: 0.2;
}
.ptdet-ban-intro h1 {
  -webkit-flex: none;
          flex: none;
  color: var(--mt-global-color-blue);
  white-space: nowrap;
}
.ptdet-ban-intro .intro-text {
  max-width: 23.22em;
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.56em;
  --line-height: 1.56em;
}

.ptdet-ban-params {
  display: grid;
  width: min(61.8vw, 53.4rem);
  grid-template-columns: 35.5805243446% 34.6441947566% 1fr;
  gap: 1.75rem 1rem;
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.75em;
  --line-height: 1.75em;
}
.ptdet-ban-params .params-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 5px 0;
  min-width: 0;
}
.ptdet-ban-params .p-lvtit {
  font-weight: 700;
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.33em;
  --line-height: 1.33em;
}
.ptdet-ban-params .p-text {
  opacity: 0.7;
}

.ptdet-ban-media {
  position: relative;
  width: 100%;
}
.ptdet-ban-media .ptmedia-color-block {
  left: -3.4rem;
}

.ptdet-st-second {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  min-height: 39rem;
  padding: 7rem 0;
}
.ptdet-st-second .st-bgimgs {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ptdet-st-second .st-bgimgs .imgs,
.ptdet-st-second .st-bgimgs img {
  width: 100%;
  height: 100%;
}
.ptdet-st-second .st-bgimgs .imgs {
  position: relative;
}
.ptdet-st-second .st-bgimgs img {
  display: block;
  object-fit: cover;
  object-position: center center;
}
.ptdet-st-second .st-text-box {
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: -2.9rem;
}
.ptdet-st-second .st-text-box > * {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 2rem 0;
}
.ptdet-st-second .st-text-box .s-heading-h2 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem 0;
}
.ptdet-st-second .st-text-box .st-text {
  max-width: 40.2em;
}
.ptdet-st-second .st-text-box .st-text p {
  margin-bottom: 1rem;
}
.ptdet-st-second .st-text-box .st-text p:last-child {
  margin-bottom: 0;
}

.ptdet-st-detail {
  padding: 6.5rem 0 16.75rem;
  color: #fff;
  background: url("/img/common/ptdet-bg.webp") no-repeat center top;
  background-size: auto 100%;
}

.ptdet-st-feature .s-heading-h3 {
  margin-bottom: 3.7rem;
  text-align: center;
}

.ptdet-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem min(7vw, 6rem);
  padding: 0 min(5.78vw, 5rem);
}

.ptdet-feature-item {
  min-width: 0;
}
.ptdet-feature-item .item-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 2rem 0;
}
.ptdet-feature-item .item-head {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  gap: 0.5rem 0;
  text-align: center;
}
.ptdet-feature-item .item-imgs {
  position: relative;
  width: 100%;
  padding: 0.05rem;
  aspect-ratio: 374/194;
  overflow: hidden;
}
.ptdet-feature-item .item-imgs .imgs,
.ptdet-feature-item .item-imgs img {
  width: 100%;
  height: 100%;
}
.ptdet-feature-item .item-imgs .imgs {
  position: relative;
}
.ptdet-feature-item .item-imgs img {
  display: block;
  object-fit: cover;
  object-position: center center;
}
.ptdet-feature-item .item-imgs::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1px;
  background: -webkit-linear-gradient(right, #fff 0%, rgba(255, 255, 255, 0) 40.32%, rgba(255, 255, 255, 0) 60%, #fff 100%);
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 40.32%, rgba(255, 255, 255, 0) 60%, #fff 100%);
  opacity: 0.5;
  pointer-events: none;
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.ptdet-stdt:not(:last-child) {
  margin-bottom: 5.6rem;
}

.ptdet-st-params {
  color: #fff;
}
.ptdet-st-params .s-heading-h3 {
  margin-bottom: 2rem;
  text-align: center;
}
.ptdet-st-params .btnbox-box {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 2.4rem 0 0 0;
}

.ptdet-params-tbwp {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.7rem;
  padding: 0 min(5.78vw, 5rem);
}

.ptdet-params-table {
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.25em;
  --line-height: 1.25em;
}
.ptdet-params-table .tb-tr {
  display: grid;
  grid-template-columns: 30% 1fr;
  min-height: 2.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.ptdet-params-table .tb-tr:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.ptdet-params-table .tb-th {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.33em;
  --line-height: 1.33em;
  text-align: left;
}
.ptdet-params-table .tb-td {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0 0.5rem;
  opacity: 0.7;
  text-align: center;
}
.ptdet-params-table .tb-td .tips {
  font-size: 12px;
}

.p-ptdet-mono .ptdet-ban-intro h1 {
  color: rgba(var(--circle-color), 1);
  --circle-color: 0, 160, 254;
}

.pt-st-ltbox .pt-item-box:nth-child(1) .s-heading-h2 {
  color: rgba(var(--circle-color), 1);
  --circle-color: 0, 160, 254;
}

.pt-news-add {
  position: relative;
  padding: 4.25rem 0 0 0;
}
.pt-news-add .bgwrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.pt-news-add .bgwrap img {
  display: block;
  width: 100%;
}

@media (min-width: 992px) {
  .ptdet-st-detail {
    background: none;
    position: relative;
  }
  .ptdet-st-detail::before {
    position: absolute;
    content: "";
    background: url(/img/common/ptdet-bg.webp) no-repeat center top;
    background-size: auto 100%;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
  .pt-news-add .bgwrap img {
    mix-blend-mode: color-dodge;
  }
  .pt-news-add::before {
    position: absolute;
    content: "";
    left: 50%;
    top: clamp(0px, 17.3611111111vw, 300px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: clamp(0px, 73.4953703704vw, 1270px);
    height: clamp(0px, 32.4074074074vw, 560px);
    background: #052199;
    -webkit-filter: blur(250px);
            filter: blur(250px);
  }
}
@media (min-width: 1921px) {
  .gx-tl {
    margin-top: 0;
  }
  .p-light-engine .ptdet-st-detail {
    padding-top: 5rem;
  }
  .gx-tl .bg-wrap img {
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
  .ptdet-ban-bgimgs img {
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
}
.pro-card-wrap .cards-list {
  margin: 0;
}

.pt-news-screen {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 7rem 0;
}

.p-ptdet {
  overflow: hidden;
  overflow-y: auto;
}
.p-ptdet .footer {
  margin-top: -8.4rem;
}

@media (max-width: 991.98px) {
  .p-light-engine .footer {
    margin-top: 0;
  }
  .ptdet-feature-item .item-imgs {
    padding: 0;
  }
  .ptdet-feature-item .item-box {
    gap: 0.3rem 0;
  }
  .ptdet-feature-item .item-box .item-text {
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: rgba(255, 255, 255, 0.5);
  }
  .ptdet-feature-item .item-head {
    gap: 0.1rem 0;
  }
  .ptdet-feature-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem 0;
    padding: 0;
  }
  .p-light-engine .ptdet-st-detail {
    padding: 0.9rem 0 0rem;
    color: #fff;
    background: url(/img/images/tj124.webp) no-repeat center top;
    background-size: auto 100%;
  }
  .ptdet-stdt:not(:last-child) {
    margin-bottom: 1.4rem;
  }
  .ptdet-st-feature .s-heading-h3 {
    margin-bottom: 0.6rem;
  }
  .ptdet-params-tbwp {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0 0;
    padding: 0;
  }
  .ptdet-params-tbwp .tb-tr {
    min-height: 1rem;
    grid-template-columns: 30% 1fr;
  }
  .ptdet-params-tbwp .tb-th {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .ptdet-params-tbwp .tb-td {
    font-size: 0.28rem;
    line-height: 0.42rem;
    padding: 0 0.32rem;
  }
  .ptdet-st-params .btnbox-box {
    padding: 0.48rem 0 0 0;
  }
  .ptdet-st-params .s-heading-h3 {
    margin-bottom: 0.5rem;
  }
  .pt-news-add {
    padding: 1.2rem 0 0 0;
    -webkit-mask-image: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
  }
  .pt-news-screen {
    grid-gap: 1.2rem 0;
  }
  .p-ptdet {
    overflow: hidden;
    overflow-y: auto;
  }
  .p-ptdet .footer {
    margin-top: 0rem;
  }
  .ptdet-ban-params {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    gap: 0.4rem;
    position: relative;
    padding: 0.7rem 0 0 0;
    color: #E8FAFF;
  }
  .ptdet-ban-params::before {
    position: absolute;
    height: 0.01rem;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.2;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  }
  .ptdet-ban-params .p-lvtit {
    font-size: 0.3rem;
    line-height: 0.4rem;
  }
  .ptdet-ban-params .p-text {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .ptdet-ban-params .params-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ptdet-ban-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.6rem 0;
  }
  .ptdet-ban-bgimgs {
    background: #000;
    overflow: hidden;
  }
  .ptdet-ban-bgimgs img {
    height: auto;
  }
  .ptdet-st-banbox {
    padding: 1.6rem 0 1rem 0;
    min-height: initial;
  }
  .ptdet-ban-intro {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    gap: 0.3rem 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .ptdet-ban-intro::after {
    opacity: 0;
  }
  .ptdet-ban-intro .intro-text {
    font-size: 0.3rem;
    line-height: 0.48rem;
    max-width: 100%;
  }
  .ptdet-ban-grid_left {
    padding: 0;
  }
  .ptdet-ban-media .ptmedia-color-block {
    left: 0;
  }
  .ptdet-ban-grid_right {
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.96rem 0;
  }
  .light-engine .ptdet-ban-grid_right {
    gap: 0.2rem 0;
  }
}
/* 自定义样式-技术-硅基氮化镓 */
.public-gos-part {
  background: url(/img/images/tj01.webp) no-repeat;
  background-size: 100% 100%;
  padding: 6rem 0 6rem;
  position: relative;
  z-index: 2;
}
.public-gos-part .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.public-gos-part .tag {
  color: #7DFEFC;
  margin: 0 0 0.6rem 0;
}
.public-gos-part .desc {
  color: #fff;
  margin: 1rem 0 0 0;
  text-align: center;
}
.public-gos-part .title {
  text-align: center;
  color: #F5FBFF;
}
.public-gos-part .imgwrap {
  max-width: 53.55rem;
  aspect-ratio: 1071/268;
  margin: 3.7rem 0 0 0;
}
.public-gos-part .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.public-gos-part.gos-part02 {
  background: url(/img/images/tj04.webp) no-repeat;
  background-size: 100% 100%;
  padding-bottom: 0rem;
}
.public-gos-part.gos-part02 .imgwrap {
  max-width: 69.75rem;
  aspect-ratio: 1395/631;
  margin: 0 0 0 0;
}
.public-gos-part.gos-part03 {
  background: url(/img/images/tj06.webp) no-repeat;
  background-size: 100% 100%;
  padding-bottom: 6rem;
  position: relative;
}
.public-gos-part.gos-part03 video {
  opacity: 1 !important;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-mask-image: -webkit-linear-gradient(bottom, transparent 20%, #000 45%);
  mask-image: linear-gradient(to top, transparent 20%, #000 45%);
}
.public-gos-part.gos-part03 .imgwrap {
  max-width: 1430px;
  aspect-ratio: 1430/632;
  margin: 4rem 0 0 0;
  border-radius: 1.2rem;
  overflow: hidden;
}
.public-gos-part.gos-part03 .imgwrap img {
  -webkit-mask-image: -webkit-linear-gradient(bottom, transparent 20%, #000 45%);
  mask-image: linear-gradient(to top, transparent 20%, #000 45%);
}
.public-gos-part.gos-part04 {
  background: url(/img/images/tj12.webp) no-repeat;
  background-size: 100% 100%;
  padding-bottom: 0rem;
}
.public-gos-part.gos-part04 .imgwrap {
  max-width: 49.8rem;
  aspect-ratio: 996/234;
  margin: 4rem 0 0 0;
}
.public-gos-part.gos-part05 {
  background: url(/img/images/tj14.webp) no-repeat;
  background-size: 100% 100%;
  padding-bottom: 4.55rem;
}
.public-gos-part.gos-part05 .imgwrap {
  max-width: 49.1rem;
  aspect-ratio: 982/472;
  margin: 1.7rem 0 0 0;
}
.public-gos-part.gos-part06 {
  background: url(/img/images/tj06.webp) no-repeat;
  background-size: 100% 100%;
  padding-bottom: 6rem;
}
.public-gos-part.gos-part06 .imgwrap {
  max-width: 71.45rem;
  aspect-ratio: 1429/632;
  margin: 2.25rem 0 0 0;
  -webkit-mask-image: -webkit-linear-gradient(bottom, transparent 0%, #000 20%);
  mask-image: linear-gradient(to top, transparent 0%, #000 20%);
}
.public-gos-part.gos-part07 {
  background: none;
  padding-bottom: 0rem;
}
.public-gos-part.gos-part07 .imgwrap {
  max-width: 71.45rem;
  aspect-ratio: 1429/632;
  margin: 2.25rem 0 0 0;
}
.public-gos-part .gos-part-grid2 {
  display: -webkit-flex;
  display: flex;
  gap: 0 clamp(0px, 11.9791666667vw, 207px);
  -webkit-align-items: center;
          align-items: center;
  margin: clamp(0px, 13.1944444444vw, 228px) 0 clamp(0px, 8.7962962963vw, 152px) 0;
}
.public-gos-part .gos-part-grid2 .desc {
  text-align: left;
}
.public-gos-part .gos-part-grid2 .imgwrap {
  max-width: 25.6rem;
  aspect-ratio: 512/283;
  margin: 0rem 0 0 0;
}

.public-gos-part-add {
  padding: 6rem 0 4.5rem 0;
  background: url(/img/images/11.webp) no-repeat;
  background-size: 100% 100%;
}

.ghl img {
  width: 100%;
}

.slide-body.gos-part-body {
  background: url(/img/images/tj16.webp) no-repeat #000;
  background-size: 100% 100%;
}

.p-gan-on-si, .p-hybrid-bonding {
  background: #000;
}

@media (min-width: 992px) {
  .public-gos-part.gos-part02 {
    background: none;
    position: relative;
  }
  .public-gos-part.gos-part02::before {
    position: absolute;
    background: url(/img/images/tj04.webp) no-repeat;
    background-size: 100% 100%;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-mask-image: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
  .p-gan-on-si .footer, .p-hybrid-bonding .footer {
    background: none;
    position: relative;
    z-index: 20;
  }
}
@media (max-width: 991.98px) {
  .p-gan-on-si .footer {
    margin-top: -1.7rem;
  }
  .p-hybrid-bonding .footer {
    margin-top: -1.5rem;
  }
  .slide-body.gos-part-body {
    background: url(/img/images/tj90.webp) no-repeat;
    background-size: 100% auto;
  }
}
.tream-banner {
  margin: -10vw 0 0 0;
}
.tream-banner .imgwrap {
  height: clamp(600px, 57.9282407407vw, 1001px);
}
.tream-banner .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tream-banner .imgup-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  color: #fff;
}
.tream-banner .tag {
  color: #7DFEFC;
  margin: 0 0 0.6rem 0;
}
.tream-banner .desc {
  margin: 1.5rem 0 0 0;
  max-width: 35.3rem;
}
.tream-banner .global-inner {
  padding: clamp(50px, 7.5231481481vw, 130px) 0 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 991.98px) {
  .gan-on-bg {
    background: url(/img/images/tj73.webp) no-repeat;
    background-size: 100% auto;
  }
  .public-gos-part .tag {
    margin-bottom: 0.14rem;
    font-size: 0.3rem;
    line-height: 0.4rem;
  }
  .public-gos-part .desc {
    margin: 0.3rem 0 0 0;
  }
  .public-gos-part .imgwrap {
    margin: 0.99rem 0 0 0;
  }
  .public-gos-part.gos-part02 {
    background: initial;
    padding-bottom: 0rem;
    padding: 0.8rem 0 0.86rem;
  }
  .public-gos-part.gos-part02 .imgwrap {
    max-width: auto;
    width: auto;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-top: 0.2rem;
    aspect-ratio: initial;
  }
  .public-gos-part.gos-part03 {
    background: url(/img/images/tj75.webp) no-repeat;
    background-size: 100% 100%;
    padding: 1.4rem 0 0;
  }
  .public-gos-part.gos-part03 .imgwrap {
    max-width: 100%;
    margin: 0.6rem 0 0 0;
    border-radius: 0.32rem;
    aspect-ratio: 650/438;
  }
  .public-gos-part.gos-part03 .imgwrap img {
    -webkit-mask-image: initial;
            mask-image: initial;
  }
  .public-gos-part.gos-part04 {
    padding: 1.4rem 0 1.58rem;
    background: url(/img/images/tj77.webp) no-repeat;
    background-size: 100% auto;
    position: relative;
  }
  .public-gos-part.gos-part04 .imgwrap {
    aspect-ratio: 628/296;
    max-width: initial;
    margin: 0.58rem 0 0 0;
  }
  .public-gos-part.gos-part04::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 8.71rem;
    width: 100%;
    background: url(/img/images/tj79.webp) no-repeat;
    background-size: contain;
  }
  .public-gos-part.gos-part05 {
    background: url(/img/images/tj80.webp) no-repeat;
    background-size: 100% auto;
    padding: 1.6rem 0 1.5rem;
  }
  .public-gos-part.gos-part05 .imgwrap {
    max-width: initial;
    width: -webkit-calc(100% + 1rem);
    width: calc(100% + 1rem);
    aspect-ratio: 750/444;
    margin: 0.4rem 0rem 0 0rem;
  }
  .public-gos-part.gos-part06 {
    background: url(/img/images/tj75.webp) no-repeat;
    background-size: 100% 100%;
    padding: 1.4rem 0 0;
  }
  .public-gos-part.gos-part06 .imgwrap {
    max-width: 100%;
    margin: 0.6rem 0 0 0;
    border-radius: 0.32rem;
    aspect-ratio: 650/438;
  }
  .public-gos-part.gos-part06 .imgwrap img {
    -webkit-mask-image: initial;
            mask-image: initial;
  }
  .public-gos-part.gos-part07 {
    padding: 1.4rem 0 0rem;
  }
  .public-gos-part .gos-part-grid2 {
    -webkit-flex-direction: column;
            flex-direction: column;
    margin: 1.6rem 0 0 0;
    gap: 0.72rem 0;
  }
  .public-gos-part .gos-part-grid2 .gos-part-r .imgwrap {
    width: 5.82rem;
    margin-top: 0;
    aspect-ratio: 582/322;
  }
  .public-gos-part-add {
    padding: 1.4rem 0 0.8rem 0;
    background: initial;
  }
  .tream-banner {
    margin: 0;
  }
  .tream-banner .desc {
    margin: 0.3rem 0 0 0;
    max-width: 100%;
    text-align: center;
  }
  .tream-banner .tag {
    margin: 0 0 0.14rem 0;
  }
  .tream-banner .imgwrap {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
            align-items: flex-end;
  }
  .tream-banner .imgwrap img {
    height: auto;
    object-fit: contain;
  }
  .tream-banner .global-inner {
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .tream-banner .imgup-text {
    position: relative;
    padding: 0.54rem 0rem 5.83rem 0rem;
  }
}
/* 自定义样式-高精度混合键合与堆叠技术平台 */
/* 自定义样式-技术-双红光全彩 */
.cards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 1.85rem;
  margin: 2.5rem 0 0 0;
}
.cards-list .inner-item {
  position: relative;
  display: block;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.cards-list .item-body {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: clamp(0px, 2.8935185185vw, 50px) clamp(0px, 1.7361111111vw, 30px) clamp(0px, 2.3148148148vw, 40px);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  color: #fff;
}
.cards-list .bottom-body {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.cards-list .item-desc {
  max-width: 23.9rem;
  margin: 1rem 0 0 0;
}
.cards-list .item-img {
  position: relative;
  aspect-ratio: 774/452;
}
.cards-list .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cards-list .item-title span {
  background: -webkit-linear-gradient(left, #0A60FF 0%, #02C8FF 100%);
  background: linear-gradient(90deg, #0A60FF 0%, #02C8FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dot-item {
  display: -webkit-flex;
  display: flex;
  gap: 0 clamp(0px, 2.3148148148vw, 40px);
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.dot-item > * {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 0 0.4rem;
}
.dot-item > *::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #F53C36;
  margin-top: 0.55rem;
}
.dot-item > *:nth-child(3n+2)::before {
  background: #7FF8F0;
}
.dot-item > *:nth-child(3n+3)::before {
  background: #6E4AF3;
}

.gos-part08 {
  padding: clamp(0px, 7.5810185185vw, 131px) 0 clamp(0px, 5.150462963vw, 89px) 0;
}
.gos-part08 .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.gos-part08 .desc {
  margin: 1rem 0 0 0;
}
.gos-part08 .item-l {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.gos-part08 .item-title {
  font-weight: 600;
}
.gos-part08 .inner-item {
  display: -webkit-flex;
  display: flex;
}

.transparent-color {
  background: -webkit-linear-gradient(left, #F00 0%, #F6FF00 29.19%, #06FBC2 53.46%, #009EFF 73.06%, #A100FF 96.87%);
  background: linear-gradient(90deg, #F00 0%, #F6FF00 29.19%, #06FBC2 53.46%, #009EFF 73.06%, #A100FF 96.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cshg-list {
  max-width: 59rem;
}
.cshg-list .inner-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.cshg-list .item-l {
  -webkit-flex: 1;
          flex: 1;
  gap: 0 clamp(0px, 0vw, 0px);
  padding: 0rem clamp(0px, 4.0509259259vw, 70px) 0 clamp(0px, 3.4722222222vw, 60px);
}
.cshg-list .item-desc {
  margin: 1.2rem 0 0 0;
}
.cshg-list .dot-item {
  margin: 1.7rem 0 0 0;
}
.cshg-list .imgwrap {
  aspect-ratio: 510/460;
  overflow: hidden;
}
.cshg-list .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cshg-list .item-r {
  width: 43.2203389831%;
}
.cshg-list .list-item {
  margin-bottom: 2.5rem;
}
.cshg-list .list-item:last-child {
  margin-bottom: 0;
}
.cshg-list .list-item:nth-child(even) .inner-item {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.cshg-list .list-item:nth-child(even) .item-l {
  padding: 0rem clamp(0px, 3.4722222222vw, 60px) 0 clamp(0px, 4.0509259259vw, 70px);
}

.pro-card-wrap .cards-list .item-desc {
  margin-top: 0.6rem;
}
.pro-card-wrap .cards-list .item-body {
  padding: 3rem 2rem 2rem 3rem;
}

@media (max-width: 991.98px) {
  .pro-card-wrap .dot-item {
    gap: 0.12rem 0.4rem;
  }
  .pro-card-wrap .dot-item > * {
    gap: 0.06rem 0.06rem;
  }
  .pro-card-wrap .cards-list .item-img {
    aspect-ratio: 650/444;
  }
  .pro-card-wrap .cards-list .item-desc {
    margin-top: 0rem;
    display: none;
  }
  .pro-card-wrap .cards-list .item-body {
    padding: 0.5rem 0.4rem 0.4rem 0.4rem;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .p-dual-red .foot-topbox-media {
    padding-top: 5.5rem;
  }
}
@media (max-width: 991.98px) {
  .cshg-list {
    max-width: initial;
    margin: 0.8rem 0 0 0;
    width: 100%;
  }
  .cshg-list .inner-item {
    -webkit-align-items: initial;
            align-items: initial;
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.3rem 0;
  }
  .cshg-list .item-l {
    -webkit-flex: initial;
            flex: initial;
    width: 100%;
    gap: 0 clamp(0px, 0vw, 0px);
    padding: 0;
  }
  .cshg-list .item-desc {
    margin: 0.2rem 0 0 0;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .cshg-list .dot-item {
    margin: 0.3rem 0 0 0;
  }
  .cshg-list .imgwrap {
    overflow: hidden;
  }
  .cshg-list .item-r {
    width: 5.94rem;
    margin-left: auto;
    margin-right: auto;
  }
  .cshg-list .list-item {
    margin-bottom: 0.8rem;
    gap: 0.3rem 0;
  }
  .cshg-list .list-item:nth-child(even) .inner-item {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .cshg-list .list-item:nth-child(even) .item-l {
    padding: 0;
  }
  .gos-part08 {
    background: url(/img/images/tj91.webp) no-repeat;
    background-size: 100% auto;
    margin: -1.52rem 0 0 0;
    padding: 3.12rem 0 1.35rem 0;
  }
  .gos-part08 .desc {
    margin: 0.3rem 0 0 0;
    text-align: center;
  }
  .cards-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.4rem;
    margin: 0.7rem 0 0 0;
  }
  .cards-list .item-img {
    aspect-ratio: 650/572;
  }
  .cards-list .item-desc {
    margin: 0.2rem 0 0 0;
    max-width: initial;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .cards-list .item-body {
    padding: 0.5rem 0.46rem 0.35rem 0.3rem;
  }
  .cards-list .inner-item {
    border-radius: 0.32rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .dot-item {
    gap: 0 0.4rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .dot-item > * {
    gap: 0.06rem 0.04rem;
  }
  .dot-item > *::before {
    width: 0.1rem;
    height: 0.1rem;
    margin-top: 0.13rem;
  }
}
/* 自定义样式-技术列表 */
.gan-silicon-box {
  background: #fff;
  position: relative;
}
.gan-silicon-box > .imgwrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.gan-silicon-box > .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gan-silicon-box .gan-silicon {
  padding: clamp(0px, 9.837962963vw, 170px) 0 clamp(0px, 9.3171296296vw, 161px);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  color: #fff;
}
.gan-silicon-box .btn-more {
  margin: clamp(0px, 2.3148148148vw, 40px) 0 0 0;
}
.gan-silicon-box.gan-silicon-plat .gan-silicon {
  padding: clamp(0px, 6.9444444444vw, 120px) 0 clamp(0px, 8.5069444444vw, 147px);
}

.gan-silicon-list {
  margin: clamp(0px, 13.3680555556vw, 231px) 0 0 0;
  padding: 1rem 0 1rem;
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 61rem;
}
.gan-silicon-list .list-item {
  position: relative;
}
.gan-silicon-list .list-item::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 100%;
  width: 0.5px;
  background: rgba(255, 255, 255, 0.3);
}
.gan-silicon-list .list-item:last-child::after {
  opacity: 0;
}
.gan-silicon-list .inner-item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.33em;
  --line-height: 1.33em;
  gap: 0 0.35rem;
}
.gan-silicon-list .inner-item span {
  margin: 0.25rem 0 0 0;
}
.gan-silicon-list img {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: cover;
}

.gan-silicon-plate {
  width: 100%;
  max-width: 55rem;
  margin: clamp(0px, 7.6388888889vw, 132px) 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0 1rem;
}
.gan-silicon-plate img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
}
.gan-silicon-plate .item-body {
  padding: 0.9rem 0 0 0;
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.33em;
  --line-height: 1.33em;
  white-space: nowrap;
}
.gan-silicon-plate .inner-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  border-radius: 1rem;
  border: 1.55px solid #454545;
  padding: 1.35rem 0.65rem;
  height: 100%;
}

.process-box {
  position: relative;
}
.process-box::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: clamp(0px, 103.0671296296vw, 1781px);
  background: url(/img/images/tj24.webp) no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  -webkit-mask-image: -webkit-linear-gradient(bottom, transparent 0%, #000 20%);
  mask-image: linear-gradient(to top, transparent 0%, #000 20%);
  mix-blend-mode: exclusion;
}
.process-box .top-bg-img {
  position: relative;
}
.process-box .top-bg-img .imgwrap {
  height: clamp(600px, 52.0833333333vw, 900px);
}
.process-box .top-bg-img .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@-webkit-keyframes sunRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sunRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes earthRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes earthRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.lg-circle-box {
  width: clamp(0px, 59.2013888889vw, 1023px);
  height: clamp(0px, 59.2013888889vw, 1023px);
  position: relative;
  margin-top: -20.83333vw;
}
.lg-circle-box::after {
  background: url(/img/images/tj30.webp);
  background-size: contain;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}
.lg-circle-box .lg-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: sunRotate 30s linear infinite;
          animation: sunRotate 30s linear infinite;
}
.lg-circle-box .dot {
  background: url(/img/images/dot.svg);
  background-size: contain;
  width: clamp(10px, 1.5046296296vw, 26px);
  height: clamp(10px, 1.5046296296vw, 26px);
  position: absolute;
  display: block;
  -webkit-animation: earthRotate 5s linear infinite;
          animation: earthRotate 5s linear infinite;
}
.lg-circle-box .dot.dot1 {
  top: clamp(0px, 6.6550925926vw, 115px);
  left: clamp(0px, 9.5486111111vw, 165px);
}
.lg-circle-box .dot.dot2 {
  bottom: clamp(0px, 6.6550925926vw, 115px);
  right: clamp(0px, 9.5486111111vw, 165px);
}
.lg-circle-box .inner-lg-circle {
  position: relative;
  height: 100%;
  width: 100%;
}

.content-body {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  background-size: clamp(0px, 100vw, 1728px) auto;
}

.content-circle {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
  z-index: 5;
}
.content-circle .btn-more {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}
.content-circle .title {
  font-weight: 600;
  color: #fff;
  margin-top: clamp(0px, 10.9375vw, 189px);
  position: relative;
  z-index: 1;
  text-align: center;
}

.small-circle-three {
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 1;
  margin: clamp(0px, 3.8194444444vw, 66px) -1.6rem 0;
  left: 1.15rem;
}
.small-circle-three .item-title {
  margin: clamp(0px, 8.1018518519vw, 140px) 0 0 0;
  font-weight: bold;
}
.small-circle-three .desc {
  margin: clamp(0px, 1.1574074074vw, 20px) 0 0 0;
  max-width: 11.2rem;
  text-align: center;
}
.small-circle-three .circle-item {
  width: clamp(0px, 22.4537037037vw, 388px);
  height: clamp(0px, 22.4537037037vw, 388px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  color: #fff;
  margin-left: -1.6rem;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.small-circle-three .circle-item:nth-child(2) {
  position: relative;
  z-index: 2;
  border: 1px solid #7dfefc;
}

.p-tech-list {
  background: #000;
}

.fullcolor-route-list {
  padding: 2.5rem 0 14rem 0;
}

.fullcolor-route {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  max-width: 67.85rem;
  width: 100%;
  margin: -5rem 0 0 0;
  padding: 5rem 0 0 0;
}
.fullcolor-route .title {
  color: #fff;
  font-weight: 600;
  margin-top: -0.5rem;
  position: relative;
  z-index: 1;
}
.fullcolor-route .item-header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  position: sticky;
  top: 5rem;
  z-index: 9;
  height: -webkit-calc(100vh + 4rem);
  height: calc(100vh + 4rem);
}
.fullcolor-route .btn-more {
  margin: 2rem 0 0 0;
}
.fullcolor-route .list-item {
  padding: 2.9rem 0 0rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  gap: 0 0rem;
}
.fullcolor-route .list-item:first-child {
  padding: 2.5rem 0 0 0;
}
.fullcolor-route .list-item.active .top-dot {
  background: #fff;
}
.fullcolor-route .item-l {
  width: 50%;
  color: #fff;
  padding: 2.5rem 0 0 clamp(0px, 8.5069444444vw, 147px);
  position: relative;
}
.fullcolor-route .item-pross {
  position: absolute;
  right: -0.3rem;
  top: 0rem;
  width: 0.6rem;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.fullcolor-route .top-dot {
  background: #4F546E;
  width: 0.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 0 1rem 0;
}
.fullcolor-route .pross-line-wrap {
  height: 100%;
  width: 1px;
  background: #4E5261;
  position: relative;
}
.fullcolor-route .pross-line-wrap .pross-line {
  position: absolute;
  left: 0px;
  width: 1px;
  height: 0%;
  background: -webkit-linear-gradient(top, rgb(125, 254, 252) 0%, rgba(125, 254, 252, 0.2) 100%);
  background: linear-gradient(to bottom, rgb(125, 254, 252) 0%, rgba(125, 254, 252, 0.2) 100%);
}
.fullcolor-route .item-desc {
  margin: 1rem 0 0 0;
  max-width: 19.4rem;
}
.fullcolor-route .item-desc p {
  margin-bottom: 0.5rem;
}
.fullcolor-route .item-desc p:last-child {
  margin-bottom: 0;
}
.fullcolor-route .item-title {
  font-weight: 600;
}
.fullcolor-route .item-r {
  -webkit-flex: 1;
          flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding: 1.4rem 0 2.65rem 0;
  position: relative;
}
.fullcolor-route .item-r .imgwrap {
  width: 81.7378497791%;
}
.fullcolor-route .item-r .imgwrap img {
  display: block;
  width: 100%;
  height: auto;
}

.add-fullcolor-route-list {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 6;
  padding: 12.25rem 0 0 0;
  margin-top: -webkit-calc(-100vh - 4rem);
  margin-top: calc(-100vh - 4rem);
}
.add-fullcolor-route-list > * {
  width: 50%;
}

.fullcolor-route-list-l {
  position: sticky;
  top: 16.15rem;
  padding: 0;
  height: -webkit-calc(100vh - 4rem);
  height: calc(100vh - 4rem);
}
.fullcolor-route-list-l .inner-re {
  position: relative;
}
.fullcolor-route-list-l .item-l {
  padding: 0 0 0 clamp(0px, 8.6805555556vw, 150px);
}
.fullcolor-route-list-l .item-l {
  width: 100%;
}
.fullcolor-route-list-l .list-item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.fullcolor-route-list-l .list-item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 992px) {
  .gan-silicon-plate .inner-item:hover {
    border: 1.55px solid #005A74;
  }
}
@media (min-width: 1921px) {
  .process-box .top-bg-img .imgwrap img {
    -webkit-mask-image: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (max-width: 991.98px) {
  .process-box .top-bg-img .imgwrap {
    height: 6.92rem;
  }
  .fullcolor-route-list {
    padding: 0.91rem 0.5rem 0 0.5rem;
    position: relative;
  }
  .fullcolor-route-list::before {
    position: absolute;
    content: "";
    top: 2.42rem;
    left: 0;
    background: url(/img/images/tj70.webp) no-repeat;
    background-size: 100% auto;
    height: 100%;
    width: 100%;
  }
  .fullcolor-route-list .list-item {
    padding: 0;
    gap: 0 0.4rem;
    margin-bottom: 0.3rem;
  }
  .fullcolor-route-list .list-item:last-child {
    margin-bottom: 0;
  }
  .fullcolor-route-list .list-item .item-r {
    padding: 0.42rem 0 0.68rem 0;
  }
  .fullcolor-route-list .list-item .item-r .imgwrap {
    width: 5.55rem;
    margin-top: 0.8rem;
  }
  .fullcolor-route-list .list-item .item-l {
    padding: 0;
    width: 0.12rem;
  }
  .fullcolor-route-list .list-item:first-child {
    padding: 0;
  }
  .fullcolor-route-list .list-item:first-child .item-r {
    padding: 0.42rem 0 0.68rem 0;
  }
  .fullcolor-route {
    margin: 3.54rem 0 0 0;
  }
  .fullcolor-route .item-desc {
    max-width: initial;
    margin-top: 0.3rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .fullcolor-route .item-desc p {
    margin-bottom: 0.1rem;
  }
  .fullcolor-route .item-r {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: initial;
            justify-content: initial;
    padding: 0;
    color: #fff;
  }
  .fullcolor-route .pross-line-wrap .pross-line {
    width: 2px;
    left: -1px;
  }
  .fullcolor-route .top-dot {
    width: 0.12rem;
    margin: 0 0 0.3rem 0;
  }
  .fullcolor-route .item-pross {
    right: 0px;
    width: 0.12rem;
  }
  .fullcolor-route .btn-more {
    margin: 0.3rem 0 0 0;
  }
  .content-body {
    background: url(/img/images/tj69.webp) center top no-repeat;
    background-size: 100% auto;
  }
  .small-circle-three {
    -webkit-flex-direction: column;
            flex-direction: column;
    margin: 0.92rem auto 0;
    left: initial;
    -webkit-align-items: center;
            align-items: center;
  }
  .small-circle-three .desc {
    margin: 0.18rem 0.1rem 0 0.1rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .small-circle-three .circle-item {
    width: 4.45rem;
    height: 4.45rem;
    margin-top: -0.87rem;
    margin-left: 0;
  }
  .small-circle-three .circle-item:first-child {
    margin-top: 0;
  }
  .small-circle-three .circle-item:nth-child(2) {
    border: 1px solid rgba(125, 254, 252, 0.6);
  }
  .small-circle-three .item-title {
    margin: 1.45rem 0 0 0;
  }
  .content-circle .title {
    margin-top: 1.6rem;
  }
  .content-circle .btn-more {
    margin-top: 0.3rem;
  }
  .process-box {
    overflow: hidden;
  }
  .lg-circle-box {
    width: 9.41rem;
    height: 9.41rem;
    margin-top: -2.54rem;
  }
  .lg-circle-box::after {
    background: url(/img/images/tj30.webp);
    background-size: contain;
    -webkit-mask-image: -webkit-linear-gradient(bottom, transparent 20%, #000 45%);
            mask-image: linear-gradient(to top, transparent 20%, #000 45%);
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }
  .lg-circle-box .lg-circle {
    background: none;
    z-index: 1;
  }
  .lg-circle-box .dot.dot1 {
    left: 1.92rem;
    top: 0.75rem;
  }
  .lg-circle-box .dot.dot2 {
    bottom: 0.75rem;
    right: 1.92rem;
  }
  .gan-silicon-box .gan-silicon {
    padding: 1.4rem 0 1rem;
  }
  .gan-silicon-box .btn-more {
    margin: 0.42rem 0 0 0;
  }
  .gan-silicon-box.gan-silicon-plat > .imgwrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
            align-items: flex-end;
    background: #000;
  }
  .gan-silicon-box.gan-silicon-plat > .imgwrap img {
    width: 100%;
    height: auto;
  }
  .gan-silicon-box.gan-silicon-plat .btn-more {
    margin: 0.3rem 0 0 0;
  }
  .gan-silicon-box.gan-silicon-plat .gan-silicon {
    padding: 0.6rem 0 1.4rem;
  }
  .gan-silicon-box.gan-silicon-plat .gan-silicon .title {
    text-align: center;
  }
  .gan-silicon-plate {
    max-width: initial;
    margin: 1.44rem 0 0 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.2rem 0.2rem;
  }
  .gan-silicon-plate img {
    width: 0.64rem;
    height: 0.64rem;
  }
  .gan-silicon-plate .item-body {
    white-space: normal;
    font-size: 0.28rem;
    line-height: 0.4rem;
    padding: 0.17rem 0.15rem 0 0.15rem;
    text-align: center;
  }
  .gan-silicon-plate .inner-item {
    border-radius: 0.2rem;
    border: 1px solid #454545;
    padding: 0.25rem 0 0.32rem;
  }
  .gan-silicon-list {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.05rem 0;
    max-width: initial;
    margin: 3.56rem 0 0 0;
    padding: 0;
    background: none;
  }
  .gan-silicon-list img {
    width: 0.44rem;
    height: 0.44rem;
  }
  .gan-silicon-list .list-item::after {
    display: none;
  }
  .gan-silicon-list .inner-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    font-size: 0.28rem;
    line-height: 0.4rem;
    gap: 0.04rem 0;
    background: rgba(0, 0, 0, 0.58);
    padding: 0.11rem;
    min-height: 1.5rem;
    text-align: center;
  }
  .gan-silicon-list .inner-item span {
    margin: 0;
  }
}
.qc-road {
  margin-top: -8.3333333333vh;
  padding: 0 0 11.2rem 0;
  max-width: 67.85rem;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.qc-road > * {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.qc-road .item-pross {
  --top:3.4rem + 8.3333333333vh + 2rem + 2.2rem + 10.625vh;
  position: absolute;
  right: 50%;
  top: -webkit-calc(3.4rem + 8.3333333333vh + 2rem + 2.2rem + 10.625vh);
  top: calc(3.4rem + 8.3333333333vh + 2rem + 2.2rem + 10.625vh);
  width: 0.6rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.qc-road .top-dot {
  background: #4F546E;
  width: 0.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 0 1rem 0;
}
.qc-road.active .top-dot {
  background: #fff;
}
.qc-road .pross-line-wrap {
  height: 100%;
  width: 1px;
  background: #4E5261;
  position: relative;
}
.qc-road .pross-line-wrap .pross-line {
  position: absolute;
  left: 0px;
  width: 1px;
  height: 0%;
  background: -webkit-linear-gradient(top, rgb(125, 254, 252) 0%, rgba(125, 254, 252, 0.2) 100%);
  background: linear-gradient(to bottom, rgb(125, 254, 252) 0%, rgba(125, 254, 252, 0.2) 100%);
}
.qc-road .title {
  text-align: center;
}
.qc-road .btn-more {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 2rem 0 0 0;
}

.scroll-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: -webkit-calc(100vh - 0rem);
  height: calc(100vh - 0rem);
  z-index: 1;
}

.inner-scroll-sticky {
  position: relative;
  padding: 8.3333333333vh 0 0 0;
}
.inner-scroll-sticky .title {
  line-height: 3.4rem;
}

.qc-road-content {
  position: relative;
  margin: 15.8333333333vh 0 0 0;
  width: 50%;
}
.qc-road-content .list-item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.qc-road-content .list-item:nth-child(1) {
  opacity: 1;
}
.qc-road-content .item-title {
  font-weight: 600;
}
.qc-road-content .item-desc {
  margin: 1rem 0 0 0;
  max-width: 19.4rem;
}
.qc-road-content .item-desc p {
  margin-bottom: 0.5rem;
}
.qc-road-content .item-desc p:last-child {
  margin-bottom: 0;
}

.qc-road-r {
  padding: -webkit-calc(3.4rem + 8.3333333333vh + 2rem + 2.2rem + 10.625vh + 2.916vh) 0 9.3rem 0;
  padding: calc(3.4rem + 8.3333333333vh + 2rem + 2.2rem + 10.625vh + 2.916vh) 0 9.3rem 0;
  width: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  position: sticky;
  top: 0;
}

.qc-road-imgList {
  width: 40.8990420044%;
}
.qc-road-imgList .list-img {
  margin-bottom: 17rem;
}
.qc-road-imgList .list-img:last-child {
  margin-bottom: 0;
}
.qc-road-imgList .imgwrap img {
  display: block;
  height: auto;
  width: 100%;
}

.pro-masklayer {
  position: absolute;
  bottom: -webkit-calc(100% - (3.4rem + 8.3333333333vh + 2rem + 2.2rem + 10.625vh + 0rem));
  bottom: calc(100% - (3.4rem + 8.3333333333vh + 2rem + 2.2rem + 10.625vh + 0rem));
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: clamp(0px, 38.8888888889vw, 672px);
  z-index: -1;
  background: url(/img/images/pro-bgs.webp) no-repeat;
  background-size: 100% 100%;
}

.p-tech-list {
  overflow: hidden;
  overflow-y: auto;
}

.qc-road-bg {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
  z-index: -1;
}

.inner-qc-road-m {
  position: relative;
  width: 100%;
  height: 100%;
}
.inner-qc-road-m::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 100vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100vh;
  background: url(/img/images/tj98.webp) no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  mix-blend-mode: screen;
}

/* 自定义样式-光互连 */
.inter-pain-wrap {
  background: url(/img/images/pain-bg.webp) no-repeat #000;
  background-size: 100% auto;
  padding: clamp(0px, 8.6805555556vw, 150px) 0 clamp(0px, 7.6388888889vw, 132px);
  min-height: clamp(0px, 55.4398148148vw, 958px);
}
.inter-pain-wrap .inter-pain {
  color: #fff;
}

.inter-pain-list {
  margin: 3.9rem 0 0 0;
}
.inter-pain-list .list-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 0 1rem;
  margin-bottom: 3.8rem;
}
.inter-pain-list .list-item:last-child {
  margin-bottom: 0;
}
.inter-pain-list .item-desc {
  margin: 1rem 0 0 0;
  max-width: 19.35rem;
}
.inter-pain-list .item-body {
  margin: 0.2rem 0 0 0;
}
.inter-pain-list .item-img {
  width: 2.7rem;
  aspect-ratio: 1;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.inter-pain-list .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991.98px) {
  .inter-pain-wrap {
    background: url(/img/images/tj35.webp) no-repeat #000;
    background-size: 100% auto;
    padding: 1.4rem 0 1rem;
  }
  .inter-pain-list {
    margin: 0.8rem 0 0 0;
  }
  .inter-pain-list .item-desc {
    margin: 0.2rem 0 0 0;
    max-width: initial;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .inter-pain-list .item-body {
    margin: 0.09rem 0 0 0;
  }
  .inter-pain-list .list-item {
    gap: 0 0.2rem;
    margin-bottom: 0.6rem;
  }
  .inter-pain-list .item-img {
    width: 0.72rem;
  }
}
.mled-sol-wrap {
  background: #000;
  padding: clamp(0px, 8.5069444444vw, 147px) 0 clamp(0px, 5.2083333333vw, 90px);
}

.mled-sol {
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.mled-sol .desc {
  margin: 1.15rem 0 0 0;
}
.mled-sol .imgwrap {
  max-width: 70.4rem;
  margin: 5.75rem auto 0 auto;
}
.mled-sol .imgwrap img {
  display: block;
  height: auto;
  width: 100%;
}

.mled-sol-data {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  gap: 0 clamp(0px, 1.1574074074vw, 20px);
  width: 100%;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.35rem;
}
.mled-sol-data .list-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  gap: 1.45rem 0;
}
.mled-sol-data .item-desc {
  font-size: clamp(1.1rem, 1.39vw, 1.2rem);
  line-height: 1.17em;
  --line-height: 1.17em;
  color: #fff;
}
.mled-sol-data .item-data {
  display: -webkit-flex;
  display: flex;
  background: -webkit-linear-gradient(left, #0A60FF 0%, #02C8FF 100%);
  background: linear-gradient(90deg, #0A60FF 0%, #02C8FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.8rem, 3.24vw, 2.8rem);
  line-height: 1.21em;
  --line-height: 1.21em;
  font-weight: bold;
}

@media (max-width: 991.98px) {
  .mled-sol-wrap {
    padding: 1rem 0 0rem;
  }
  .mled-sol .title {
    text-align: center;
  }
  .mled-sol .desc {
    margin: 0.3rem 0 0 0;
  }
  .mled-sol .imgwrap {
    max-width: initial;
    margin: 0.98rem -0.5rem 0 -0.5rem;
  }
  .mled-sol-data {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: initial;
            justify-content: initial;
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem 0;
    width: 100%;
    padding: 0.18rem 0 2rem 0;
    max-width: initial;
    margin-top: 0.18rem;
    position: relative;
    z-index: 3;
  }
  .mled-sol-data::before {
    position: absolute;
    content: "";
    left: -0.5rem;
    right: -0.5rem;
    top: -2.72rem;
    height: -webkit-calc(100% + 2.72rem);
    height: calc(100% + 2.72rem);
    z-index: -1;
    background: url(/img/images/tj39.webp) no-repeat top;
    background-size: 100% auto;
  }
  .mled-sol-data .list-item {
    gap: 0.11rem 0;
  }
  .mled-sol-data .item-desc {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
  }
  .mled-sol-data .item-data {
    font-size: 0.6rem;
    line-height: 0.8rem;
    --line-height: 0.8rem;
  }
}
.hb-mled-wrap {
  padding: clamp(0px, 5.2083333333vw, 90px) 0 clamp(0px, 6.5972222222vw, 114px);
  background: #000;
}

.hb-mled {
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.hb-mled .desc {
  margin: 1.15rem 0 0 0;
}
.hb-mled .imgwrap {
  max-width: 41.45rem;
  margin: 4.1rem 0 0 0;
}
.hb-mled .imgwrap img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .hb-mled-wrap {
    padding: 0rem 0 1.94rem;
    background: #000;
  }
  .hb-mled {
    color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .hb-mled .desc {
    margin: 0.3rem 0 0 0;
  }
  .hb-mled .imgwrap {
    max-width: initial;
    margin-top: 0.46rem;
  }
  .hb-mled .imgwrap img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.banner-ghl {
  height: 100vh;
  width: 100%;
  position: relative;
}
.banner-ghl .up-body {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.banner-ghl .title {
  font-weight: 600;
}
.banner-ghl .desc {
  margin-top: 1rem;
}
.banner-ghl .btnbox {
  margin-top: 1.5rem;
}
.banner-ghl .global-inner {
  padding: 0 0 1.25rem 0;
  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;
  color: #fff;
}
.banner-ghl .bg-wrap {
  height: 100%;
}
.banner-ghl .bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-connect .footer {
  display: none;
}

.gx-tl {
  position: relative;
}
.gx-tl .global-inner {
  padding: 0 0 clamp(0px, 5.3819444444vw, 93px) clamp(0px, 9.5486111111vw, 165px);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  color: #fff;
  min-height: clamp(400px, 32.6967592593vw, 565px);
}
.gx-tl .title {
  font-weight: 600;
}
.gx-tl .title span {
  background: -webkit-linear-gradient(left, #0F1197 0%, #12CCFF 82.49%);
  background: linear-gradient(90deg, #0F1197 0%, #12CCFF 82.49%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gx-tl .bg-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.gx-tl .bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1921px) {
  .gx-tl .bg-wrap img {
    object-fit: contain;
    -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (max-width: 991.98px) {
  .gx-tl {
    position: relative;
    padding: 0.83rem 0 0 0;
  }
  .gx-tl .global-inner {
    padding: 0 0.5rem 6.06rem 0.5rem !important;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
    color: #fff;
    min-height: initial;
  }
  .gx-tl .bg-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
            align-items: flex-end;
  }
  .gx-tl .bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    height: 6.06rem;
  }
  .banner-ghl {
    height: 100dvh;
  }
  .banner-ghl .title {
    font-weight: 600;
    text-align: center;
  }
  .banner-ghl .desc {
    margin-top: 0.29rem;
    text-align: center;
  }
  .banner-ghl .btnbox {
    margin-top: 0.4rem;
  }
  .banner-ghl .global-inner {
    padding-bottom: 0.79rem !important;
  }
}
/* 自定义样式-光互连频道 */
.p-optical-channel {
  background: #050609;
  color: #fff;
}
.p-optical-channel .rocket-widget__crumb {
  position: absolute;
  z-index: 2;
  width: 100%;
  color: #fff;
}
.p-optical-channel .rocket-crumb-list a {
  color: rgba(255, 255, 255, 0.65);
}

.opt-channel-hero {
  min-height: clamp(0px, 47.4537037037vw, 820px);
  position: relative;
  overflow: hidden;
  background: #050609;
}

.opt-channel-hero picture, .opt-channel-hero picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.opt-channel-hero picture img {
  object-fit: cover;
}

.opt-channel-hero-content {
  position: absolute;
  inset: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
}

.eyebrow {
  color: #42c6ff;
  font: 600 0.5714285714rem Arial, sans-serif;
  letter-spacing: 0.14em;
}

.opt-channel-hero h1 {
  margin: 1.4rem 0;
  font-size: 3.6rem;
  line-height: 1.13;
  font-weight: 300;
}

.opt-channel-hero h1 strong, h2 strong {
  font-weight: 700;
}

.intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.76);
}

.channel-link {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 0.9rem;
  width: -webkit-fit-content;
  width: fit-content;
  margin-top: 2.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #42c6ff;
  color: #fff;
  font-size: 0.9rem;
}

.channel-link span {
  color: #42c6ff;
  font-size: 1.25rem;
}

.opt-channel-intro {
  padding: clamp(0px, 8.6805555556vw, 150px) 0 clamp(0px, 8.9699074074vw, 155px);
  background: #050609;
}

.opt-channel-intro h2, .opt-channel-solution h2, .opt-channel-cta h2 {
  margin: 1.2rem 0;
  font-size: 2.8rem;
  line-height: 1.25;
  font-weight: 300;
}

.lead {
  max-width: 35rem;
  color: #aeb6c5;
  font-size: 1rem;
  line-height: 1.8;
}

.opt-channel-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.opt-channel-points article {
  border-top: 1px solid #263345;
  padding-top: 1.2rem;
}

.opt-channel-points b {
  color: #42c6ff;
  font: 600 0.8rem Arial, sans-serif;
}

.opt-channel-points h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.3rem;
}

.opt-channel-points p, .solution-copy > p:not(.eyebrow) {
  color: #aeb6c5;
  font-size: 0.85rem;
  line-height: 1.75;
}

.opt-channel-solution {
  padding: clamp(0px, 7.2337962963vw, 125px) 0;
  background: -webkit-linear-gradient(330deg, #0b1625, #07101d);
  background: linear-gradient(120deg, #0b1625, #07101d);
}

.opt-channel-solution .global-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  gap: 3rem;
}

.solution-copy {
  width: 38%;
}

.solution-media {
  width: 54%;
}

.solution-media img {
  display: block;
  width: 100%;
}

.channel-link-dark {
  color: #fff;
}

.opt-channel-cta {
  padding: clamp(0px, 6.9444444444vw, 120px) 0;
  text-align: center;
  background: #07101d url("/img/images/pain-bg.webp") center/cover no-repeat;
}

.opt-channel-cta .global-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}

@media (max-width: 991.98px) {
  .opt-channel-hero {
    min-height: 9rem;
  }
  .opt-channel-hero-content {
    padding: 1rem 0.5rem 0.8rem;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7), transparent 65%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 65%);
  }
  .eyebrow {
    font-size: 0.2rem;
  }
  .opt-channel-hero h1 {
    margin: 0.25rem 0;
    font-size: 0.66rem;
  }
  .intro {
    font-size: 0.28rem;
    line-height: 1.55;
  }
  .channel-link {
    margin-top: 0.35rem;
    padding-bottom: 0.12rem;
    font-size: 0.26rem;
  }
  .opt-channel-intro {
    padding: 1.4rem 0.5rem;
  }
  .opt-channel-intro h2, .opt-channel-solution h2, .opt-channel-cta h2 {
    margin: 0.25rem 0;
    font-size: 0.52rem;
  }
  .lead {
    font-size: 0.28rem;
    line-height: 1.8;
  }
  .opt-channel-points {
    display: block;
    margin-top: 0.8rem;
  }
  .opt-channel-points article {
    margin-top: 0.5rem;
    padding-top: 0.2rem;
  }
  .opt-channel-points h3 {
    margin: 0.25rem 0 0.12rem;
    font-size: 0.34rem;
  }
  .opt-channel-points p, .solution-copy > p:not(.eyebrow) {
    font-size: 0.27rem;
  }
  .opt-channel-solution {
    padding: 1.2rem 0.5rem;
  }
  .opt-channel-solution .global-inner {
    display: block;
  }
  .solution-copy, .solution-media {
    width: 100%;
  }
  .solution-media {
    margin-top: 0.7rem;
  }
  .opt-channel-cta {
    padding: 1.2rem 0.5rem;
  }
}
/* 自定义样式-技术-光引擎 */
.p-light-engine {
  background: #000;
  overflow: hidden;
  overflow-y: auto;
}

.le-part01 .imgwrap {
  max-width: clamp(0px, 111.1111111111vw, 1920px);
  width: 100%;
  aspect-ratio: initial;
  margin: 3.7rem 0 0 0;
}
.le-part01 .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.le-part02 {
  background: #000;
  padding: clamp(0px, 8.5069444444vw, 147px) 0 clamp(0px, 6.9444444444vw, 120px);
}
.le-part02 .le-params {
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.le-part02 .le-params .title {
  text-align: center;
}
.le-part02 .le-params-list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  gap: 0 clamp(0px, 1.1574074074vw, 20px);
  width: 100%;
  max-width: 68rem;
  margin: 4rem 0 0 0;
}
.le-part02 .le-params-list .list-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  gap: 1.45rem 0;
}
.le-part02 .le-params-list .item-desc {
  font-size: clamp(1.1rem, 1.39vw, 1.2rem);
  line-height: 1.17em;
  --line-height: 1.17em;
  color: #fff;
}
.le-part02 .le-params-list .item-data {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  background: -webkit-linear-gradient(left, #0A60FF 0%, #02C8FF 100%);
  background: linear-gradient(90deg, #0A60FF 0%, #02C8FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.8rem, 3.24vw, 2.8rem);
  line-height: 1.21em;
  --line-height: 1.21em;
  font-weight: bold;
}
.le-part02 .le-params-list .item-data .item-prefix {
  margin-right: 0.3rem;
}
.le-part02 .le-params-list .item-data .item-unit {
  font-size: clamp(14px, 1rem, 20px);
  line-height: 1.2em;
  --line-height: 1.2em;
  font-weight: normal;
  margin-left: 0.4rem;
}
.le-part02 .le-params-note {
  color: rgba(255, 255, 255, 0.45);
  margin: 3rem 0 0 0;
  text-align: center;
}

.le-part03 .le-part03-grid {
  display: -webkit-flex;
  display: flex;
  gap: 0 clamp(0px, 6.9444444444vw, 120px);
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  max-width: 70.4rem;
  margin: 4rem auto 0 auto;
}
.le-part03 .le-part03-l {
  -webkit-flex: 1;
          flex: 1;
}
.le-part03 .le-part03-l .desc {
  text-align: left;
  margin: 0 0 0 0;
}
.le-part03 .le-scene-list {
  margin: 3rem 0 0 0;
}
.le-part03 .le-scene-list .list-item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.5rem 0;
}
.le-part03 .le-scene-list .list-item .item-title {
  color: #fff;
}
.le-part03 .le-scene-list .list-item .item-desc {
  color: rgba(255, 255, 255, 0.6);
  margin: 0.5rem 0 0 0;
}
.le-part03 .le-part03-r {
  width: clamp(0px, 44.7916666667vw, 774px);
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.le-part03 .le-part03-r .imgwrap {
  max-width: initial;
  aspect-ratio: 774/452;
  margin: 0 0 0 0;
}

@media (min-width: 992px) {
  .p-light-engine .footer {
    background: none;
    position: relative;
    z-index: 20;
  }
}
@media (max-width: 991.98px) {
  .le-part01 .imgwrap {
    margin: 0.6rem 0 0 0;
  }
  .le-part02 {
    padding: 1.2rem 0 1.4rem;
  }
  .le-part02 .le-params-list {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.7rem 0;
    margin: 0.7rem 0 0 0;
  }
  .le-part02 .le-params-list .list-item {
    gap: 0.11rem 0;
  }
  .le-part02 .le-params-list .item-desc {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
  }
  .le-part02 .le-params-list .item-data {
    font-size: 0.6rem;
    line-height: 0.8rem;
    --line-height: 0.8rem;
  }
  .le-part02 .le-params-list .item-data .item-unit {
    font-size: 0.28rem;
    line-height: 0.36rem;
    --line-height: 0.36rem;
    margin-left: 0.08rem;
  }
  .le-part02 .le-params-note {
    margin: 0.6rem 0 0 0;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .le-part03 .le-part03-grid {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.7rem 0;
    margin: 0.6rem 0 0 0;
  }
  .le-part03 .le-part03-l {
    width: 100%;
  }
  .le-part03 .le-part03-l .desc {
    text-align: center;
  }
  .le-part03 .le-scene-list {
    margin: 0.5rem 0 0 0;
  }
  .le-part03 .le-scene-list .list-item {
    padding: 0.26rem 0;
    text-align: center;
  }
  .le-part03 .le-scene-list .list-item .item-desc {
    margin: 0.12rem 0 0 0;
  }
  .le-part03 .le-part03-r {
    width: 100%;
  }
  .le-part03 .le-part03-r .imgwrap {
    aspect-ratio: 650/444;
  }
}
/* 自定义样式-全流程 IDM */
.idm-make-box {
  position: relative;
  padding: 6rem 0 9.35rem;
  color: #fff;
}
.idm-make-box .global-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.idm-make-box .bg-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.idm-make-box .bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: top;
}

.idm-make-group {
  padding: clamp(0px, 30.4398148148vw, 526px) 2.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 clamp(0px, 7.7546296296vw, 134px);
}
.idm-make-group .item-title {
  font-weight: 600;
  color: #7DFEFC;
}
.idm-make-group .item-desc {
  margin: 0.5rem 0 0 0;
}
.idm-make-group .list-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.idm-make-group .list-item::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #7DFEFC;
  margin-bottom: 0.9rem;
}
.idm-make-group .list-item:nth-child(2) {
  margin-top: -2.7rem;
}

.mt20 {
  margin: 1rem 0 0 0;
}

@media (min-width: 1921px) {
  .idm-make-box .bg-wrap img {
    -webkit-mask-image: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
  .idm-make-group {
    padding: 30.4398148148vw 2.5rem 0 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .mt20 {
    margin: 0.3rem 0 0 0;
  }
  .idm-make-box {
    padding: 1.4rem 0 0.91rem;
  }
  .idm-make-box .desc {
    text-align: center;
  }
  .idm-make-group {
    padding: 4.49rem 0rem 0 0rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
  }
  .idm-make-group .item-title {
    font-size: 0.48rem;
    line-height: 0.6rem;
  }
  .idm-make-group .item-desc {
    margin: 0.1rem 0 0 0;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .idm-make-group .list-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
  }
  .idm-make-group .list-item::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #7DFEFC;
    margin-bottom: 0.9rem;
    display: none;
  }
  .idm-make-group .list-item:nth-child(2) {
    margin-top: 0rem;
  }
}
.cmos-box {
  background: #000;
  padding: 2.75rem 0 4.35rem;
  color: #fff;
}
.cmos-box .global-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.cmos-box .bg-wrap {
  width: 100%;
  max-width: 62.95rem;
  margin: 3rem 0 0 0;
}
.cmos-box .bg-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .cmos-box {
    padding: 1rem 0 0;
  }
  .cmos-box .title {
    text-align: center;
  }
  .cmos-box .bg-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0.6rem 0 0 0;
  }
}
.idm-customer-box {
  position: relative;
  color: #fff;
  min-height: clamp(0px, 58.2175925926vw, 1006px);
}
.idm-customer-box .global-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  max-width: 62.95rem;
  padding: 5.5rem 0 0;
}
.idm-customer-box strong {
  color: #7DFEFC;
}
.idm-customer-box .bg-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
}
.idm-customer-box .bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: top;
}

.idm-customer-data {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  margin: 4.5rem 0 11.35rem 0;
}

.idm-customer-l {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem 0;
}
.idm-customer-l .item-desc {
  margin: 0.5rem 0 0 0;
  font-size: clamp(1.1rem, 1.39vw, 1.2rem);
  line-height: 1.17em;
  --line-height: 1.17em;
}
.idm-customer-l .item-title {
  font-size: clamp(1.4rem, 2.78vw, 2.4rem);
  line-height: 1.25em;
  --line-height: 1.25em;
  font-weight: 600;
  display: -webkit-flex;
  display: flex;
}
.idm-customer-l .item-title > * {
  background: var(--1, linear-gradient(244deg, #2AC6FF 18.06%, #59A1FF 45.85%, #0C5DD7 78.65%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.idm-customer-r {
  max-width: 50%;
}
.idm-customer-r .desc-r {
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.88em;
  --line-height: 1.88em;
  margin: 0.3rem 0 0 0;
}
.idm-customer-r .data-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.7rem 0;
  margin: 2.25rem 0 0 0;
}
.idm-customer-r .data-list .list-item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 0.5rem;
}
.idm-customer-r .data-list .num {
  font-size: clamp(1rem, 2.31vw, 2rem);
  line-height: 1em;
  --line-height: 1em;
  white-space: nowrap;
}
.idm-customer-r .data-list .num-wrap {
  display: -webkit-flex;
  display: flex;
  font-family: "Montserrat";
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.idm-customer-r .data-list .prex {
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 2.5em;
  --line-height: 2.5em;
  position: relative;
  top: 0.35rem;
}
.idm-customer-r .data-list .text {
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 2.5em;
  --line-height: 2.5em;
}
.idm-customer-r .data-list .item-l {
  display: -webkit-flex;
  display: flex;
  gap: 0 1.45rem;
}
.idm-customer-r .data-list .imgwrap {
  width: 2.65rem;
  aspect-ratio: 53/54;
}
.idm-customer-r .data-list .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-idm-det {
  background: #000;
}

@media (min-width: 992px) {
  .p-idm-det .footer {
    margin-top: -16.75rem;
    position: relative;
    z-index: 20;
    background: none;
  }
}
@media (min-width: 1921px) {
  .idm-customer-box {
    -webkit-mask-image: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (max-width: 991.98px) {
  .p-idm-det .footer {
    margin-top: -0.6rem;
  }
  .idm-customer-box {
    padding: 1.6rem 0 0 0;
    min-height: 19.36rem;
    min-height: 16.41rem;
  }
  .idm-customer-box .desc {
    text-align: center;
  }
  .idm-customer-box .title {
    text-align: center;
  }
  .idm-customer-box .global-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    max-width: 100%;
    padding: 1.6rem 0 0;
  }
  .idm-customer-box .bg-wrap {
    top: 2.95rem;
    height: -webkit-calc(100% - 2.95rem);
    height: calc(100% - 2.95rem);
  }
  .idm-customer-data {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: initial;
            justify-content: initial;
    -webkit-align-items: initial;
            align-items: initial;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin: 0.9rem 0 0rem 0;
    gap: 1.2rem 0;
  }
  .idm-customer-l {
    gap: 0.6rem 0;
    text-align: center;
  }
  .idm-customer-l .item-desc {
    font-size: 0.3rem;
    line-height: 0.4rem;
    margin: 0.1rem 0 0 0;
  }
  .idm-customer-l .item-title {
    font-size: 0.48rem;
    line-height: 0.6rem;
    --line-height: 0.6rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .idm-customer-l .item-title .item-desc {
    margin: 0.1rem 0 0 0;
    font-size: 0.3rem;
    line-height: 0.4rem;
    --line-height: 0.4rem;
  }
  .idm-customer-r {
    max-width: 100%;
  }
  .idm-customer-r .title-r {
    text-align: center;
  }
  .idm-customer-r .desc-r {
    font-size: 0.28rem;
    line-height: 0.42rem;
    --line-height: 0.42rem;
    margin: 0.2rem auto 0 auto;
    max-width: 5.58rem;
    text-align: center;
  }
  .idm-customer-r .data-list {
    gap: 0.5rem 0;
    margin: 0.4rem 0 4.71rem 0;
  }
  .idm-customer-r .data-list .list-item {
    gap: 0.1rem;
  }
  .idm-customer-r .data-list .num {
    font-size: 0.6rem;
    line-height: 0.6rem;
    --line-height: 0.6rem;
    white-space: nowrap;
  }
  .idm-customer-r .data-list .num-wrap {
    display: -webkit-flex;
    display: flex;
    font-family: Montserrat;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
  .idm-customer-r .data-list .prex {
    font-size: 0.3rem;
    line-height: 0.6rem;
    --line-height: 0.6rem;
    position: relative;
    top: 0.07rem;
  }
  .idm-customer-r .data-list .text {
    font-size: 0.28rem;
    line-height: 0.42rem;
    --line-height: 0.42rem;
    padding: 0.14rem 0 0 0;
  }
  .idm-customer-r .data-list .item-l {
    gap: 0 0.28rem;
  }
  .idm-customer-r .data-list .imgwrap {
    width: 0.7rem;
    aspect-ratio: 53/54;
  }
}