@charset "UTF-8";
/** 页面主体 **/
body {
  --mt-global-color-red: #FB1717;
  --mt-global-color-blue: #3B609B;
  --mt-global-color-blue-light: #00A2E9;
  --mt-global-color-blue-dark: #1F3165;
  --mt-global-color-blue-hover: #0095DA;
  --mt-global-color-white: #fff;
  --mt-global-color-white-dark: rgba(255,255,255,0.8);
  --mt-global-color-black: #333;
  --mt-global-color-black_20: #333;
  --mt-global-color-black_40: #666;
  --mt-global-color-black_60: #999;
  --mt-global-color-gray: #5D6166;
}

.rocket-content__inner {
  width: 70vw;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.rocket-screen-full .rocket-content__inner {
  width: 100%;
  max-width: none;
}

.overflow-hidden {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1270px) {
  .rocket-content__inner, .rocket-fulldiv-inner {
    width: -webkit-calc(100% - 8rem) !important;
    width: calc(100% - 8rem) !important;
    max-width: none;
  }
}
@media (max-width: 991.98px) {
  .hidden-lg-down {
    display: none !important;
  }
  .rocket-content__inner {
    width: 100%;
    max-width: none;
    padding: 0 0.5rem;
  }
}
/******/
/* 公共按钮样式 */
@keyframes btnAnt {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  55% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes btnAnt {
  0% {
    -webkit-transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(100%);
  }
  55% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@keyframes arrowRightOut {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes arrowRightOut {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
  }
}
@keyframes arrowLeftIn {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes arrowLeftIn {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
.btnbox {
  width: 100%;
  display: -webkit-flex;
  display: flex;
}

.innosc-btn {
  width: 9.4rem;
  height: 2.5rem;
  font-size: 0.9rem;
  line-height: 1em;
  border: solid 1px;
  border-radius: 1.5rem;
  display: block;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  transition: background 0.3s, border 0.3s;
  -webkit-transition: background 0.3s, border 0.3s;
}
.innosc-btn > * {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: inherit;
}
.innosc-btn .bi {
  -webkit-flex: none;
          flex: none;
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  margin: 0 5px 0 0;
  background-color: currentColor;
}
.innosc-btn .bi-view {
  -webkit-mask: url("/img/common/ico-view.svg") no-repeat center/contain;
  mask: url("/img/common/ico-view.svg") no-repeat center/contain;
}
.innosc-btn .bi-download {
  -webkit-mask: url("/img/common/ico-download.svg") no-repeat center/contain;
  mask: url("/img/common/ico-download.svg") no-repeat center/contain;
}

.innosc-btn-fill-blue {
  background-color: var(--mt-global-color-blue-light);
  border-color: var(--mt-global-color-blue-light);
  color: #fff;
}

.innosc-btn-stroke-blue {
  background-color: transparent;
  border-color: var(--mt-global-color-blue-light);
  color: var(--mt-global-color-blue-light);
}

.innosc-btn-fill-blue-dark {
  background-color: var(--mt-global-color-blue-dark);
  border-color: var(--mt-global-color-blue-dark);
  color: #fff;
}

.innosc-btn-fill-blue-shadow {
  background-color: var(--mt-global-color-blue-dark);
  border-color: var(--mt-global-color-blue-dark);
  color: #fff;
  box-shadow: 4px 4px 4px 0px rgb(1, 217, 255), -4px -4px 10px 0px rgb(1, 217, 255);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.innosc-btn-fill-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--mt-global-color-blue-light);
}

.innosc-btn-learn {
  font-size: max(14px, 0.8rem);
  line-height: 1em;
  color: var(--mt-global-color-blue-light);
}
.innosc-btn-learn > * {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: inherit;
}
.innosc-btn-learn .bi-arrow {
  width: 1.125em;
  height: 1em;
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0 0 0 5px;
}
.innosc-btn-learn .bi-arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  -webkit-mask: url("/img/common/right.svg") no-repeat center/contain;
  mask: url("/img/common/right.svg") no-repeat center/contain;
  background: currentColor;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.innosc-btn-download {
  font-size: max(14px, 0.8rem);
  line-height: 1.5em;
  color: var(--mt-global-color-black);
}
.innosc-btn-download > * {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.innosc-btn-download .bi-download {
  width: 0.85rem;
  height: 0.85rem;
  display: block;
  -webkit-flex: none;
          flex: none;
  margin: 0 5px 0 0;
  background: url("/img/common/download.svg") no-repeat center center;
  background-size: contain;
}

.innosc-video-play {
  width: 5rem;
  height: 5rem;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border: none;
  z-index: 20;
  border-radius: 50%;
  background: url("/img/common/video-play.svg") no-repeat center center #00A2E9;
  background-size: contain;
  cursor: pointer;
}

@media (min-width: 992px) {
  .innosc-btn:not(.disabled):hover {
    background-color: var(--mt-global-color-blue-hover);
    border-color: var(--mt-global-color-blue-hover);
    color: #fff;
  }
  .innosc-btn-learn:hover .bi-arrow::after {
    animation: btnAnt 0.3s both;
    -webkit-animation: btnAnt 0.3s both;
  }
  .innosc-btn-fill-blue-shadow:hover {
    background-color: var(--mt-global-color-blue-dark) !important;
    border-color: var(--mt-global-color-blue-dark) !important;
    box-shadow: 4px 4px 20px 0px rgb(1, 217, 255), -4px -4px 20px 0px rgb(1, 217, 255);
  }
}
@media (max-width: 991.98px) {
  .innosc-btn {
    width: 3rem;
    height: 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.3rem;
    line-height: 0.48rem;
    font-weight: normal;
  }
  .innosc-btn-learn {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .innosc-btn-learn .bi-arrow {
    width: 0.2rem;
    height: 0.36rem;
    margin: 0 0 0 0.28rem;
  }
  .innosc-btn-download {
    font-size: 0.3rem;
  }
  .innosc-btn-download .bi-download {
    width: 0.4rem;
    height: 0.4rem;
    margin: 0;
  }
  .innosc-btn-download .text {
    display: none;
  }
  .innosc-video-play {
    width: 1.2rem;
    height: 1.2rem;
    background: url("/img/common/video-play-blue.svg") no-repeat center center #fff;
    background-size: contain;
  }
}
/* 表单-form */
.form-group {
  font-size: 16px;
  line-height: 1.875em;
  color: #333;
  position: relative;
  margin: 0;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-group.has-error .form-control {
  border-color: var(--mt-global-color-red) !important;
  z-index: 5;
}
.form-group.has-error .help-block {
  display: block;
  color: var(--mt-global-color-red) !important;
  z-index: 10;
}
.form-group.has-error.is-empty .form-control::-webkit-input-placeholder {
  color: var(--mt-global-color-red);
}
.form-group.has-error.is-empty .form-control::-moz-placeholder {
  color: var(--mt-global-color-red);
}
.form-group.has-error.is-empty .form-control:-moz-placeholder {
  color: var(--mt-global-color-red);
}
.form-group.has-error.is-empty .form-control:-ms-input-placeholder {
  color: var(--mt-global-color-red);
}

.help-block {
  font-size: 0.875em;
  line-height: 1.2em;
  margin: 5px 0 0;
  z-index: 10;
  pointer-events: none;
}

.control-label {
  color: #333;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin: 0.65rem 0 0.5rem;
}

.form-control {
  padding: 0 1.1rem;
  font-size: 1em;
  line-height: inherit;
  color: inherit;
  height: 2.7rem;
  width: 100%;
  display: block;
  box-shadow: none;
  outline: none;
  border: solid 2px #F6F6F6;
  border-radius: 0px;
  background: transparent;
}
.form-control:focus {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border-color: var(--mt-global-color-blue);
}
.form-control[readonly] {
  background-color: transparent;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::placeholder {
  color: #999;
}
.form-control::-webkit-placeholder {
  color: #999;
}
.form-control::-moz-placeholder {
  color: #999;
}

textarea.form-control {
  min-height: 6.9rem;
  padding: 0.5rem 1.1rem;
}

.form-btnbox {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 1.25em 0 0;
}
.form-btnbox .btn-submit {
  width: 100%;
  height: 2.1rem;
  font-size: 1em;
  border-radius: 0px;
}

.check-input {
  display: none;
}

.checklabel {
  cursor: pointer;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  background: #fff;
  height: 2rem;
  padding: 0 0.7rem;
}

.check-icon {
  -webkit-flex: none;
          flex: none;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 2px solid #E8E8E8;
  object-fit: contain;
  object-position: center center;
  margin: 0 10px 0 0;
  pointer-events: none;
}

.check-text {
  pointer-events: none;
}
.check-text a[href] {
  pointer-events: auto;
}

.checkitem {
  position: relative;
}
.checkitem.is-checked .checklabel {
  background: var(--mt-global-color-blue);
  color: #fff;
}
.checkitem.is-checked .icon-checkbox {
  border-radius: 0px;
  border: none;
  background: url("/img/static/check-white.svg") no-repeat center center;
  background-size: contain;
}

.form-checkbox-list {
  width: 100%;
  display: grid;
  grid-gap: 0.5rem 1.4rem;
}

.form-upload-box {
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-align-items: center;
          align-items: center;
}
.form-upload-box input[type=file] {
  display: none;
}
.form-upload-box .upload-btnbox {
  -webkit-flex: none;
          flex: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  height: 2.7rem;
  cursor: pointer;
  position: relative;
}
.form-upload-box .btn-upload {
  -webkit-flex: none;
          flex: none;
  width: 82px;
  height: 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  background: #EFEFEF;
  border-radius: 7px;
  border: 1px solid #767676;
  font-size: 1em;
  line-height: 1em;
  color: #999;
  margin: 0 1.1rem 0 0;
  cursor: pointer;
}
.form-upload-box .upload-tips {
  color: #999;
}
.form-upload-box .upload-list {
  -webkit-flex: 1;
          flex: 1;
  display: none;
}
.form-upload-box .upload-list .item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}
.form-upload-box .upload-list .item-title {
  max-width: -webkit-calc(100% - 1em - 10px);
  max-width: calc(100% - 1em - 10px);
  overflow: hidden;
  height: 1.875em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.form-upload-box .upload-list .item-delete {
  width: 1em;
  height: 1em;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: none;
          flex: none;
  background: url("/img/static/close-black.svg") no-repeat center center;
  background-size: 1em;
  margin: 0 0 0 10px;
  cursor: pointer;
  opacity: 0.5;
}

.form-upload-group.has-error .upload-tips {
  color: #FF0000;
}

#applyCountry:focus::-webkit-input-placeholder {
  color: #fff;
}

#applyCountry:focus::placeholder {
  color: #fff;
}

@media (min-width: 992px) {
  .form-group-col12 {
    width: 100%;
    grid-column: 1/-1;
  }
  .form-checkbox-list.checklist-col6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .form-upload-box .btn-upload:hover {
    background-color: var(--mt-global-color-blue);
    color: #fff;
    border-color: var(--mt-global-color-blue);
  }
  .form-upload-box .upload-list .item-delete:hover {
    opacity: 1;
  }
}
@media (max-width: 1366px) and (min-width: 992px) {
  .form-checkbox-list.checklist-col6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991.98px) {
  .form-group {
    font-size: 0.32rem;
    line-height: 0.5rem;
    margin-bottom: 0.18rem;
  }
  .control-label {
    line-height: 1em;
    margin: 0.38rem 0 0.2rem 0.24rem;
  }
  .form-control {
    height: 1rem;
    padding: 0 0.24rem;
    border-width: 1px;
  }
  .help-block {
    right: 0.24rem;
  }
  textarea.form-control {
    min-height: 3.95rem;
    padding: 0.24rem 0.24rem;
  }
  select.form-control {
    background-size: 0.46rem;
    background-position: right 0.3rem center;
  }
  .form-btnbox {
    margin: 0.55rem 0 0;
  }
  .form-btnbox .btn-submit {
    width: 100%;
    height: 0.92rem;
    font-size: 0.32rem;
  }
  .checklabel {
    padding: 0 0.24rem;
    height: 0.82rem;
  }
  .check-icon {
    width: 0.32rem;
    height: 0.32rem;
    margin: 0 0.24rem 0 0;
  }
  .form-checkbox-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.16rem 0.18rem;
  }
  .form-upload-box {
    display: block;
    margin: 0.36rem 0 0.32rem;
    padding: 0 0 0 0.25rem;
  }
  .form-upload-box .upload-btnbox {
    height: auto;
  }
  .form-upload-box .upload-tips, .form-upload-box .upload-list {
    margin: 0.3rem 0 0;
  }
}
/******/
/* 国家选择样式 */
.country-select-container {
  width: 100%;
  position: relative;
}

.country-select-wrapper {
  background-color: #fff;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  border: 1px solid #CCCCCC;
  border-radius: 0px;
  padding: 0 0.75rem;
  height: 2.5rem;
  font-size: 0.8rem;
}
.country-select-wrapper input {
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 1em;
  line-height: inherit;
  border: none;
  background-color: #fff;
  box-sizing: border-box;
}

.country-select-flag {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.country-select-dropdown {
  position: absolute;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-top: none;
  background: white;
  z-index: 1000;
  display: none;
  margin-top: 1px;
}

.country-select-item {
  padding: 8px 10px;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.country-select-item .flag {
  -webkit-flex: none;
          flex: none;
  width: 20px;
  height: 15px;
  margin-right: 8px;
  object-fit: contain;
  object-position: center center;
}
.country-select-item:hover, .country-select-item.highlighted {
  background-color: #f5f5f5;
}

.country-select-divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  color: #666;
  font-size: 0.9em;
  margin: 10px 0;
}

.country-select-hidden {
  display: none;
}

@media (max-width: 991.98px) {
  .country-select-wrapper {
    font-size: 0.3rem;
    height: 0.8rem;
    padding: 0 0.2rem;
  }
}
/* 面包屑导航 */
.rocket-widget__crumb {
  width: 100%;
  position: absolute;
  left: 0;
  top: 1rem;
  z-index: 80;
}

.rocket-crumb-list {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
  pointer-events: auto;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  white-space: nowrap;
}
.rocket-crumb-list .icon-home {
  width: 16px;
  height: 16px;
  display: block;
  color: inherit;
  background-color: currentColor;
  -webkit-mask: url("/img/common/home.svg") no-repeat center/contain;
  mask: url("/img/common/home.svg") no-repeat center/contain;
}
.rocket-crumb-list > .navitem {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.rocket-crumb-list > .navitem:not(:last-child)::after {
  content: ">";
  display: block;
  -webkit-flex: none;
          flex: none;
  font-size: 16px;
  line-height: 1em;
  margin: 0 10px;
  color: #fff;
}
.rocket-crumb-list > .navitem:last-child {
  white-space: normal;
}

.rocket-crumb-black .rocket-crumb-list {
  color: var(--mt-global-color-black);
}
.rocket-crumb-black .rocket-crumb-list > .navitem:not(:last-child)::after {
  color: var(--mt-global-color-black);
}

@media (min-width: 992px) {
  .rocket-crumb-list > .navitem:hover a[href] {
    color: var(--mt-global-color-blue-light);
  }
}
@media (max-width: 991.98px) {
  .rocket-widget__crumb {
    display: none !important;
  }
  .rocket-crumb-list {
    color: #fff;
    font-size: 0.26rem;
  }
  .rocket-crumb-list > .navitem:not(:last-child)::after {
    background-color: #fff;
  }
}
/****** 
 * 组件 — 分栏
 *****/
.rocket-widget__layout,
.rocket-widget__layout_s {
  background-repeat: no-repeat;
}

.rocket-layout-grid,
.rocket-layout-grid_s {
  width: 100%;
  position: relative;
  display: grid;
  margin: 0 auto;
}

.rocket-grid-column,
.rocket-grid-column_s {
  direction: initial;
  display: grid;
}

@media (min-width: 992px) {
  .rocket-grid-stretch .rocket-grid-column > div[data-compid] {
    height: 100%;
  }
}
.rocket-widget__layout,
.rocket-widget__layout_s {
  background-repeat: no-repeat;
}

.rocket-layout-flex,
.rocket-layout-flex_s {
  width: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
}

/****** 
 * 组件 — 多屏容器
 *****/
.rocket-widget__multidiv {
  position: relative;
  background: no-repeat center center;
  background-size: cover;
}

/****** 
 * 组件 — 通屏容器
 *****/
.rocket-widget__fulldiv {
  width: 100%;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}

.rocket-fulldiv-inner {
  position: relative;
  margin: 0 auto;
  -webkit-flex: none;
          flex: none;
}

/****** 
 * 组件 — 颜色
 *****/
.rocket-font-blue {
  color: #548FCB;
}

.rocket-font-red {
  color: #CD3366;
}

.rocket-font-pink {
  color: #FFCFDF;
}

/****** 
 * 组件 — 标题 
 *****/
.rocket-title-xxxl {
  font-size: 2.8rem;
  line-height: 3.4rem;
  color: inherit;
  font-weight: bold;
}

.rocket-title-xxl {
  font-size: 2.4rem;
  line-height: 3rem;
  color: inherit;
  font-weight: bold;
}

.rocket-title-xl {
  font-size: 1.8rem;
  line-height: 2.3rem;
  color: inherit;
  font-weight: bold;
}

.rocket-title-lg {
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: inherit;
  font-weight: bold;
}

.rocket-title-md {
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: inherit;
  font-weight: bold;
}

.rocket-title-sm {
  font-size: 1rem;
  line-height: 1.3rem;
  color: inherit;
  font-weight: bold;
}

.rocket-title-xs {
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: inherit;
  font-weight: bold;
}

.rocket-widget__heading {
  display: -webkit-flex;
  display: flex;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
}

.rocket-heading-title {
  position: relative;
  -webkit-flex: none;
          flex: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
  background: no-repeat center center;
  background-size: cover;
  font-weight: bold;
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .rocket-title-xxxl {
    font-size: 0.6rem;
    line-height: 0.8rem;
    color: inherit;
  }
  .rocket-title-xxl {
    font-size: 0.48rem;
    line-height: 0.6rem;
    color: inherit;
  }
  .rocket-title-xl {
    font-size: 0.42rem;
    line-height: 0.54rem;
    color: inherit;
  }
  .rocket-title-lg {
    font-size: 0.36rem;
    line-height: 0.54rem;
    color: inherit;
  }
  .rocket-title-md {
    font-size: 0.3rem;
    line-height: 0.48rem;
    color: inherit;
  }
  .rocket-title-sm {
    font-size: 0.3rem;
    line-height: 0.48rem;
    color: inherit;
  }
  .rocket-title-xs {
    font-size: 0.3rem;
    line-height: 0.48rem;
    color: inherit;
  }
}
/****** 
 * 组件 — 文本
 *****/
.rocket-text-xl {
  font-size: 1rem;
  line-height: 1.5rem;
  color: inherit;
}

.rocket-text-lg {
  font-size: 0.9rem;
  line-height: 1.4rem;
  color: inherit;
}

.rocket-text-md {
  font-size: 0.8rem;
  line-height: 1.2rem;
  color: inherit;
}

.rocket-text-sm {
  font-size: 0.8rem;
  line-height: 1.2rem;
  color: inherit;
}

.rocket-widget__text {
  position: relative;
}

.rocket-weixin-text {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
.rocket-weixin-text img {
  max-width: 100%;
  height: auto !important;
  margin: 15px 0;
}

.rocket-block-text,
.rocket-classical-text {
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: #222;
  position: relative;
  overflow: hidden;
}
.rocket-block-text a[href],
.rocket-classical-text a[href] {
  color: var(--mt-global-color-blue-hover) !important;
}
.rocket-block-text i,
.rocket-classical-text i {
  font-style: italic;
}
.rocket-block-text > *:last-child,
.rocket-classical-text > *:last-child {
  margin-bottom: 0 !important;
}
.rocket-block-text > *:first-child,
.rocket-classical-text > *:first-child {
  margin-top: 0 !important;
}
.rocket-block-text img,
.rocket-classical-text img {
  height: auto !important;
  max-width: 100%;
}
.rocket-block-text h1, .rocket-block-text h2, .rocket-block-text h3, .rocket-block-text h4, .rocket-block-text h5, .rocket-block-text h6,
.rocket-classical-text h1,
.rocket-classical-text h2,
.rocket-classical-text h3,
.rocket-classical-text h4,
.rocket-classical-text h5,
.rocket-classical-text h6 {
  font-weight: bold;
}
.rocket-block-text h1,
.rocket-classical-text h1 {
  font-size: 2.4rem;
  line-height: 3rem;
}
.rocket-block-text h2,
.rocket-classical-text h2 {
  font-size: 1.8rem;
  line-height: 2.3rem;
  margin: 4rem 0 1.25rem;
}
.rocket-block-text h3,
.rocket-classical-text h3 {
  font-size: 1.4rem;
  line-height: 1.7rem;
  margin: 4rem 0 1.25rem;
}
.rocket-block-text h4,
.rocket-classical-text h4 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin: 4rem 0 1.1rem;
}
.rocket-block-text h5,
.rocket-classical-text h5 {
  font-size: 1rem;
  line-height: 1.3rem;
  margin: 1.1rem 0;
}
.rocket-block-text h6,
.rocket-classical-text h6 {
  font-size: 0.9rem;
  line-height: 1.2rem;
  line-height: inherit;
}
.rocket-block-text ul > li,
.rocket-classical-text ul > li {
  position: relative;
  padding-left: 1.4rem;
}
.rocket-block-text ul > li::before,
.rocket-classical-text ul > li::before {
  content: "·";
  width: 1.4rem;
  text-align: center;
  font-size: 2em;
  line-height: inherit;
  position: absolute;
  left: 0;
  top: 0;
}
.rocket-block-text ul > li::marker,
.rocket-classical-text ul > li::marker {
  font-size: 0.8em;
  color: inherit;
}
.rocket-block-text ul > li:last-child,
.rocket-classical-text ul > li:last-child {
  margin-bottom: 0;
}
.rocket-block-text ul ol, .rocket-block-text ul ul,
.rocket-classical-text ul ol,
.rocket-classical-text ul ul {
  margin: 0;
}
.rocket-block-text ol,
.rocket-classical-text ol {
  margin-left: 1.2em;
}
.rocket-block-text ol > li,
.rocket-classical-text ol > li {
  list-style: decimal;
}
.rocket-block-text ol > li:last-child,
.rocket-classical-text ol > li:last-child {
  margin-bottom: 0;
}
.rocket-block-text ol ol, .rocket-block-text ol ul,
.rocket-classical-text ol ol,
.rocket-classical-text ol ul {
  margin: 0;
}
.rocket-block-text sub, .rocket-block-text sup,
.rocket-classical-text sub,
.rocket-classical-text sup {
  margin: 0 5px;
  font-size: 1em;
  line-height: 1em;
  zoom: 0.65;
}
.rocket-block-text sup,
.rocket-classical-text sup {
  top: -0.6em;
}
.rocket-block-text table,
.rocket-classical-text table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 16px;
  border: none;
  background: #F2FAFD;
}
.rocket-block-text table th, .rocket-block-text table td,
.rocket-classical-text table th,
.rocket-classical-text table td {
  border: none;
  background: transparent;
  padding: 1rem 2rem;
  font-size: 1em;
  line-height: inherit;
  vertical-align: middle;
  border: none;
  position: relative;
  z-index: 5;
}
.rocket-block-text table th:frist-child, .rocket-block-text table td:frist-child,
.rocket-classical-text table th:frist-child,
.rocket-classical-text table td:frist-child {
  padding-left: 1.25rem;
}
.rocket-block-text table th:last-child, .rocket-block-text table td:last-child,
.rocket-classical-text table th:last-child,
.rocket-classical-text table td:last-child {
  padding-right: 1.25rem;
  border-right: none;
}
.rocket-block-text table th,
.rocket-classical-text table th {
  height: 2.2rem;
  background: var(--mt-global-color-blue);
  color: #fff;
  border-bottom: solid 1px #0083C7;
  font-weight: bold;
  white-space: nowrap;
}
.rocket-block-text table td,
.rocket-classical-text table td {
  height: 2.7rem;
  border-right: solid 1px #0083C7;
}
.rocket-block-text table td:last-child,
.rocket-classical-text table td:last-child {
  border-right: none;
}
.rocket-block-text table tr:last-child td,
.rocket-classical-text table tr:last-child td {
  border-bottom: solid 1px #0083C7;
}
.rocket-block-text table tr:nth-child(odd) td,
.rocket-classical-text table tr:nth-child(odd) td {
  position: relative;
  background-color: #fff;
}
.rocket-block-text table tr:nth-child(odd) td[rowspan],
.rocket-classical-text table tr:nth-child(odd) td[rowspan] {
  border-bottom: solid 1px #0083C7;
}
.rocket-block-text table tr.rows-tr td,
.rocket-classical-text table tr.rows-tr td {
  border-bottom: solid 1px #D3D9E5;
}
.rocket-block-text table tr.rows-tr td[rowspan],
.rocket-classical-text table tr.rows-tr td[rowspan] {
  background-color: #fff !important;
  border-bottom: solid 1px #0083C7;
}
.rocket-block-text table tr.rows-tr td:last-child:not([rowspan]),
.rocket-classical-text table tr.rows-tr td:last-child:not([rowspan]) {
  border-right: solid 1px #0083C7;
}
.rocket-block-text table tr.rows-tr:not(:first-child) td:not([rowspan])::after, .rocket-block-text table tr.rows-tr:not(:first-child) td:not([rowspan])::before,
.rocket-classical-text table tr.rows-tr:not(:first-child) td:not([rowspan])::after,
.rocket-classical-text table tr.rows-tr:not(:first-child) td:not([rowspan])::before {
  display: none;
}
.rocket-block-text table tr.rows-tr:nth-child(even) td,
.rocket-classical-text table tr.rows-tr:nth-child(even) td {
  background-color: #F7F8FA;
}
.rocket-block-text table tr.rows-last td,
.rocket-classical-text table tr.rows-last td {
  border-bottom: solid 1px #0083C7;
}
.rocket-block-text .table,
.rocket-classical-text .table {
  color: inherit;
}

.rocket-text-limb .rocket-block-text ul > li, .rocket-text-limb .rocket-block-text ol > li,
.rocket-text-limb .rocket-classical-text ul > li,
.rocket-text-limb .rocket-classical-text ol > li {
  margin-bottom: 1.5rem;
}
.rocket-text-limb .rocket-block-text ul > li:last-child, .rocket-text-limb .rocket-block-text ol > li:last-child,
.rocket-text-limb .rocket-classical-text ul > li:last-child,
.rocket-text-limb .rocket-classical-text ol > li:last-child {
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  .rocket-block-text table tr th, .rocket-block-text table tr td,
  .rocket-classical-text table tr th,
  .rocket-classical-text table tr td {
    width: 7.5rem;
  }
  .rocket-block-text table tr th:first-child, .rocket-block-text table tr td:first-child,
  .rocket-classical-text table tr th:first-child,
  .rocket-classical-text table tr td:first-child {
    width: 7.5rem;
  }
  .rocket-block-text table tr th:last-child, .rocket-block-text table tr td:last-child,
  .rocket-classical-text table tr th:last-child,
  .rocket-classical-text table tr td:last-child {
    width: 9rem;
  }
  .rocket-block-text table tbody td:first-child::after,
  .rocket-classical-text table tbody td:first-child::after {
    content: "";
    width: 0.5rem;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: #F2FAFD;
    pointer-events: none;
  }
  .rocket-block-text table tbody td:last-child::after,
  .rocket-classical-text table tbody td:last-child::after {
    content: "";
    width: 0.5rem;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: #F2FAFD;
    pointer-events: none;
  }
}
@media (max-width: 991.98px) {
  .rocket-text-xl {
    font-size: 0.3rem;
    line-height: 0.48rem;
    color: inherit;
  }
  .rocket-text-lg {
    font-size: 0.3rem;
    line-height: 0.48rem;
    color: inherit;
  }
  .rocket-text-md {
    font-size: 0.3rem;
    line-height: 0.48rem;
    color: inherit;
  }
  .rocket-text-sm {
    font-size: 0.24rem;
    line-height: 0.36rem;
    color: inherit;
  }
  .rocket-block-text h1,
  .rocket-classical-text h1 {
    font-size: 0.48rem;
    line-height: 0.6rem;
  }
  .rocket-block-text h2,
  .rocket-classical-text h2 {
    font-size: 0.42rem;
    line-height: 0.54rem;
    margin: 1rem 0 0.22rem;
  }
  .rocket-block-text h3,
  .rocket-classical-text h3 {
    font-size: 0.36rem;
    line-height: 0.54rem;
    margin: 1rem 0 0.22rem;
  }
  .rocket-block-text h4, .rocket-block-text h5, .rocket-block-text h6,
  .rocket-classical-text h4,
  .rocket-classical-text h5,
  .rocket-classical-text h6 {
    font-size: 0.3rem;
    line-height: 0.48rem;
    margin: 0.22rem 0;
  }
  .rocket-block-text table,
  .rocket-classical-text table {
    width: auto;
    min-width: 100%;
    font-size: 0.28rem;
    line-height: 0.36rem;
  }
  .rocket-block-text table th:first-child, .rocket-block-text table td:first-child,
  .rocket-classical-text table th:first-child,
  .rocket-classical-text table td:first-child {
    padding-left: 0.3rem;
  }
  .rocket-block-text table th:last-child, .rocket-block-text table td:last-child,
  .rocket-classical-text table th:last-child,
  .rocket-classical-text table td:last-child {
    padding-right: 0.3rem;
  }
  .rocket-block-text table th,
  .rocket-classical-text table th {
    height: 0.8rem;
    padding: 0.14rem 0.3rem;
  }
  .rocket-block-text table td,
  .rocket-classical-text table td {
    height: 0.9rem;
    padding: 0.2rem 0.3rem;
  }
  .rocket-block-text table tbody tr:nth-child(odd) td,
  .rocket-classical-text table tbody tr:nth-child(odd) td {
    background: #fff;
  }
  .rocket-block-text ul > li,
  .rocket-classical-text ul > li {
    padding-left: 0.36rem;
  }
  .rocket-block-text ul > li::before,
  .rocket-classical-text ul > li::before {
    width: 0.36rem;
  }
  .rocket-text-hscroll {
    width: 100vw;
    margin: 0 -0.5rem;
    padding: 0 0.5rem 0.2rem 0.5rem;
    overflow: hidden;
    overflow-x: auto;
    position: relative;
  }
  .rocket-text-hscroll::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .rocket-text-hscroll::-webkit-scrollbar-track {
    background: rgba(84, 95, 108, 0.2);
    border-radius: 3px;
  }
  .rocket-text-hscroll::-webkit-scrollbar-thumb {
    background: var(--mt-global-color-blue);
    border-radius: 3px;
  }
  .rocket-text-table .table {
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
  }
  .rocket-text-table .table::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .rocket-text-table .table::-webkit-scrollbar-track {
    background: rgba(84, 95, 108, 0.2);
    border-radius: 3px;
  }
  .rocket-text-table .table::-webkit-scrollbar-thumb {
    background: var(--mt-global-color-blue);
    border-radius: 3px;
  }
  .rocket-text-table table {
    width: auto;
    min-width: 100%;
    display: table;
  }
  .rocket-text-table table td {
    min-width: 45vw;
  }
  .rocket-text-limb .rocket-block-text ul > li, .rocket-text-limb .rocket-block-text ol > li,
  .rocket-text-limb .rocket-classical-text ul > li,
  .rocket-text-limb .rocket-classical-text ol > li {
    margin-bottom: 0.4rem;
  }
}
/****** 
 * 组件 — 图片
 *****/
.rocket-widget__image {
  position: relative;
}

.rocket-block-image {
  max-width: 100%;
  position: relative;
  margin: 0 auto;
}

.rocket-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.rocket-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.rocket-image__option {
  width: 100%;
  margin-top: 1em;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.rocket-image__option::after {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.rocket-image__option .text {
  position: relative;
  z-index: 10;
}

.rocket-image-link {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
}

.text-option-left .rocket-image__option {
  text-align: left;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

@media (max-width: 991.98px) {
  .rocket-image__option {
    width: 100%;
  }
}
/****** 
 * 组件 — 视频
 *****/
.rocket-widget__video {
  position: relative;
}

.rocket-block-video {
  max-width: 100%;
  position: relative;
  margin: 0 auto;
}

.rocket-video {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.rocket-video .video-js {
  background: transparent;
}
.rocket-video .video-js, .rocket-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.rocket-video-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.rocket-video-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.rocket-video-btn_play {
  width: 5rem;
  height: 5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: 50;
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  margin: 0;
  font-size: 1em;
  cursor: pointer;
}
.rocket-video-btn_play .bi {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border: none;
  z-index: 50;
  background: url("/img/common/video-play.svg") no-repeat center center #00A2E9;
  background-size: contain;
}

.rocket-video__option {
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.rocket-video__option::after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.rocket-video__option .text {
  position: relative;
  z-index: 10;
}

@media (max-width: 991.98px) {
  .rocket-video-btn_play {
    width: 1rem;
    height: 1rem;
  }
}
/****** 
 * 组件 — 音频
 *****/
.rocket-widget__audio {
  position: relative;
  z-index: 20;
}

.rocket-block-audio {
  position: relative;
  margin: 0 auto;
}
.rocket-block-audio.is-playing .rocket-audio-btn_play {
  display: none;
}
.rocket-block-audio.is-playing .rocket-audio-btn_pause {
  display: -webkit-flex;
  display: flex;
}

.rocket-audio {
  display: none;
}

.rocket-audio-icon {
  -webkit-flex: none;
          flex: none;
  margin: 0 10px 0 0;
}
.rocket-audio-icon .bi, .rocket-audio-icon img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  background: no-repeat center center;
  background-size: contain;
}

.rocket-audio-btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  cursor: pointer;
  line-height: 1em;
  border: solid 1px;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
}

.rocket-audio-btn_pause {
  display: none;
}

/****** 
 * 组件 — 按钮
 *****/
.rocket-widget__button {
  width: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  pointer-events: none;
  z-index: 20;
}

.rocket-button {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 1em;
  cursor: pointer;
  pointer-events: auto;
  border: none;
  border-width: 0px;
}
.rocket-button::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.rocket-button > *, .rocket-button a {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  z-index: 5;
  transition: none;
  -webkit-transition: none;
  color: inherit !important;
}
.rocket-button .bi {
  -webkit-flex: none;
          flex: none;
  display: block;
  position: relative;
  background: no-repeat center center;
  background-size: contain;
}
.rocket-button .bi img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.rocket-button .bi .hover {
  display: none;
}

.hcis-btn-viewdet .rocket-button {
  overflow: visible;
}
.hcis-btn-viewdet .rocket-button .bi {
  background-color: transparent;
}

@media (min-width: 992px) {
  .rocket-button:hover::after {
    opacity: 1;
  }
  .rocket-button:hover .bi .deft {
    display: none;
  }
  .rocket-button:hover .bi .hover {
    display: block;
  }
}
/****** 
 * 组件 — 图标: 图标框/图标列表
 *****/
.rocket-widget__icon {
  height: 100%;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
}

.rocket-layout-icon {
  width: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
          align-items: stretch;
}

.rocket-icon-link {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
}

.rocket-icon-image {
  -webkit-flex: none;
          flex: none;
  background: no-repeat center center;
  background-size: cover;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  border: none;
  border-width: 0px;
}

.rocket-icon {
  -webkit-flex: none;
          flex: none;
  border-radius: inherit;
  overflow: hidden;
}
.rocket-icon img {
  display: block;
  object-fit: contain;
  object-position: center center;
}

.rocket-icon-num {
  z-index: 10;
  white-space: nowrap;
  border: none;
  border-width: 0px;
  font-weight: normal;
}
.rocket-icon-num img {
  display: block;
  object-fit: contain;
  object-position: center center;
}

.rocket-icon-body {
  width: 100%;
  -webkit-flex: 1;
          flex: 1;
  background: no-repeat center center;
  background-size: cover;
  border: none;
  border-width: 0px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.rocket-icon-body_inner {
  -webkit-flex: none;
          flex: none;
  position: relative;
}

.rocket-icon-title {
  -webkit-flex: none;
          flex: none;
}

.rocket-icon-text {
  -webkit-flex: none;
          flex: none;
}

@media (max-width: 991.98px) {
  .rocket-icon-num {
    font-weight: normal;
  }
  .last-no-btline-app .rocket-icon-item:last-child {
    border-bottom: none !important;
  }
}
.rocket-widget__icon-list {
  max-width: 100%;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
}

.rocket-icon-list {
  display: grid;
  position: relative;
}

.rocket-icon-item {
  position: relative;
  display: -webkit-flex;
  display: flex;
}
.rocket-icon-item .item-box {
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.rocket-icon-item .rocket-icon-title {
  margin: 0;
}

.last-no-btline .rocket-icon-item:last-child {
  border-bottom: none !important;
}

@media (min-width: 992px) {
  .last-no-btline-web .rocket-icon-item:last-child {
    border-bottom: none !important;
  }
}
@media (max-width: 991.98px) {
  .rocket-widget__icon-list {
    max-width: none;
  }
}
/****** 
 * 组件 — 关键词数据
 *****/
.rocket-widget__keyword {
  position: relative;
}

.rocket-keyword-list {
  width: 100%;
  display: grid;
  position: relative;
  text-align: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.rocket-keyword-item_data {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-size: 1.5rem;
  line-height: 1em;
  white-space: nowrap;
}
.rocket-keyword-item_data .data-icon {
  -webkit-flex: none;
          flex: none;
  margin: 0 5px 0 0;
}
.rocket-keyword-item_data .data-icon img {
  width: 1.2em;
  height: 1.2em;
  display: block;
  object-fit: contain;
  object-position: center center;
}
.rocket-keyword-item_data .data-text {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.rocket-keyword-item_title {
  font-size: 1.1rem;
  line-height: 1em;
  margin: 1.27em 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.rocket-keyword-col2-all .rocket-keyword-item:nth-child(2n+1) {
  border-left: none;
}
.rocket-keyword-col2-all .rocket-keyword-item:nth-child(2n+2) {
  border-right: none;
}

@media (min-width: 992px) {
  .rocket-keyword-col4-web .rocket-keyword-item:nth-child(4n+1) {
    border-left: none;
  }
  .rocket-keyword-col4-web .rocket-keyword-item:nth-child(4n+4) {
    border-right: none;
  }
}
@media (max-width: 991.98px) {
  .rocket-keyword-item_data {
    font-size: 0.5rem;
  }
  .rocket-keyword-item_data .data-icon {
    margin: 0 0.18rem 0 0;
  }
  .rocket-keyword-item_data .data-icon img {
    width: 0.4rem;
    height: 0.4rem;
  }
  .rocket-keyword-item_title {
    font-size: 0.28rem;
    line-height: 1em;
    margin: 1em 0 0;
  }
  .rocket-keyword-col2-app .rocket-keyword-item:nth-child(2n+1) {
    border-left: none;
  }
  .rocket-keyword-col2-app .rocket-keyword-item:nth-child(2n+2) {
    border-right: none;
  }
}
/****** 
 * 组件 — 标签
 *****/
.rocket-widget__tag {
  position: relative;
  background: no-repeat center center;
  background-size: cover;
  margin: 0 auto;
}

.rocket-tag-list {
  width: 100%;
  display: grid;
  position: relative;
  grid-gap: 16px;
  font-size: 16px;
  line-height: 1em;
}

.rocket-tag-item_inner {
  width: 100%;
  position: relative;
  padding: 9px 13px;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  border: none;
  border-width: 0px;
}

/****** 
 * 组件 — 折叠面板
 *****/
.rocket-widget__collapse-wrapper {
  width: 100%;
  display: grid;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  border-top: solid 1px #D9D9D9;
}

.rocket-widget__collapse {
  position: relative;
  border-bottom: solid 1px #D9D9D9;
}

.rocket-collapse-heading {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  padding: 1.25rem 0;
}

.rocket-collapse-title {
  -webkit-flex: 1;
          flex: 1;
  max-width: 100%;
}

.rocket-collapse-handle {
  -webkit-flex: none;
          flex: none;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  background: var(--mt-global-color-blue-light);
  margin: 0 0.6rem 0 1rem;
  padding: 0.4rem;
  color: #fff;
}
.rocket-collapse-handle .bi {
  -webkit-flex: none;
          flex: none;
  width: 1rem;
  height: 1rem;
  display: block;
  position: relative;
  background: no-repeat center center;
  background-size: contain;
}
.rocket-collapse-handle .bi-collapse-plus::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.rocket-collapse-handle .bi-collapse-plus::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.rocket-collapse-handle .bi-collapse-arrow {
  background-color: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="black" viewBox="0 0 16 16"><path d="M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="black" viewBox="0 0 16 16"><path d="M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>') no-repeat center;
}
.rocket-collapse-handle .bi-collapse-chevron {
  background-color: currentColor;
  -webkit-mask: url("/img/common/collapse-down.svg") no-repeat center;
  mask: url("/img/common/collapse-down.svg") no-repeat center;
}

.rocket-collapse-body {
  width: 100%;
  position: relative;
  display: none;
  padding: 0.5rem 0 2rem;
}

.rocket-collapse-active .bi-collapse-plus::after {
  display: none;
}
.rocket-collapse-active .bi-collapse-arrow, .rocket-collapse-active .bi-collapse-chevron {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.rocket-collapse-notext .rocket-collapse-heading {
  pointer-events: none;
}
.rocket-collapse-notext .rocket-collapse-handle {
  display: none !important;
}

@media (max-width: 991.98px) {
  .rocket-collapse-heading {
    -webkit-align-items: center;
            align-items: center;
    padding: 0.26rem 0;
  }
  .rocket-collapse-handle {
    margin: 0 0.15rem 0 0.3rem;
    padding: 4px;
  }
  .rocket-collapse-handle .bi {
    width: 0.2rem;
    height: 0.2rem;
  }
  .rocket-collapse-body {
    padding: 0.34rem 0 0.6rem;
  }
}
/****** 
 * 组件 — 卡片容器
 *****/
.rocket-widget__card {
  position: relative;
  background-repeat: no-repeat;
}
.rocket-widget__card::-webkit-scrollbar {
  width: 2px;
}
.rocket-widget__card::-webkit-scrollbar-track {
  background: rgba(84, 95, 108, 0.2);
  border-radius: 3px;
}
.rocket-widget__card::-webkit-scrollbar-thumb {
  background: var(--mt-global-color-blue);
  border-radius: 3px;
}

.rocket-card-link {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
}

.rocket-block-card {
  width: 100%;
  height: 100%;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
}

.scroll-y .rocket-widget__card {
  overflow: hidden;
  overflow-y: auto;
}

/****** 
 * 组件 — banner容器
 *****/
.rocket-widget__banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.rocket-block-banner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.rocket-block-banner.full-height {
  height: 100vh;
}

.rocket-banner-link {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
}

.rocket-banner-media {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.rocket-banner-media video, .rocket-banner-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.rocket-banner-media .rocket-block-video, .rocket-banner-media .video-js {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.rocket-banner-media .rocket-block-image, .rocket-banner-media .rocket-image {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.rocket-banner-media .rocket-video {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
}

.rocket-banner-body {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
}

.rocket-banner-inner {
  height: 100%;
  position: relative;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
}

.rocket-banner-tbox {
  max-width: 100%;
  -webkit-flex: none;
          flex: none;
}

@media (min-width: 992px) {
  .full-height-web {
    height: 100vh;
  }
}
@media (max-width: 991.98px) {
  .full-height-app {
    height: 100dvh;
  }
  .rocket-block-banner.full-height {
    height: 100dvh;
  }
}
/****** 
 * 组件 — swiper容器
 *****/
.rocket-widget__swiper {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.rocket-widget__swiper[data-clicked=true] .swiper-slide {
  cursor: pointer;
}

.rocket-swiper-wrapper {
  width: 100%;
  position: relative;
}

.rocket-swiper-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.rocket-swiper-slide .has-option-position {
  overflow: hidden;
}
.rocket-swiper-slide .has-option-position .rocket-image__option {
  display: -webkit-flex;
  display: flex;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.rocket-swiper-slide.swiper-slide-active .has-option-position .rocket-image__option {
  opacity: 1;
  transition: all 0.3s 0.2s ease;
  -webkit-transition: all 0.3s 0.2s ease;
}

.rocket-swiper-control {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: 50%;
  z-index: 20;
  cursor: pointer;
  background: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border: 1px solid #9c9c9c;
}
.rocket-swiper-control .bi {
  width: 9px;
  height: 16px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  pointer-events: none;
  background: no-repeat center center;
  background-size: contain;
  background-color: #000;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.rocket-swiper-control.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.rocket-swiper-prev {
  right: 100%;
  transform: translate(-2rem, -50%);
  -webkit-transform: translate(-2rem, -50%);
}
.rocket-swiper-prev .bi {
  -webkit-mask: url("/img/common/swip-left.svg") no-repeat center/contain;
  mask: url("/img/common/swip-left.svg") no-repeat center/contain;
}

.rocket-swiper-next {
  left: 100%;
  transform: translate(2rem, -50%);
  -webkit-transform: translate(2rem, -50%);
}
.rocket-swiper-next .bi {
  -webkit-mask: url("/img/common/swip-right.svg") no-repeat center/contain;
  mask: url("/img/common/swip-right.svg") no-repeat center/contain;
}

.rocket-swiper-option {
  width: 100%;
  display: none;
  text-align: center;
  position: relative;
  height: 3.1rem;
  font-size: 1.1rem;
  line-height: 1em;
  color: #737B7D;
  margin-top: 1em;
  overflow: hidden;
  z-index: 10;
}

.rocket-swiper-paging {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  margin: 1.5rem 0 0;
  grid-gap: 0 0.75rem;
}
.rocket-swiper-paging .bullet {
  -webkit-flex: none;
          flex: none;
  width: 4.15rem;
  height: 6px;
  border-radius: 3px;
  background: #E8EAEE;
  position: relative;
  cursor: pointer;
  margin: 0;
  transition: all 3s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition: all 3s cubic-bezier(0.33, 1, 0.68, 1);
  overflow: hidden;
}
.rocket-swiper-paging .active {
  background-color: var(--mt-global-color-blue-light);
}

@keyframes bulletAntd {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes bulletAntd {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.rocket-swiper-position .rocket-swiper-wrapper {
  padding: 0;
}
.rocket-swiper-position .rocket-swiper-control {
  background-color: transparent;
}
.rocket-swiper-position .rocket-swiper-control .bi {
  background-color: rgba(255, 255, 255, 0.57);
}
.rocket-swiper-position .rocket-swiper-paging {
  position: absolute;
  left: 0;
  bottom: 5rem;
  z-index: 20;
}
.rocket-swiper-position .rocket-swiper-paging .bullet {
  background-color: rgba(255, 255, 255, 0.57);
}
.rocket-swiper-position .rocket-swiper-paging .active {
  background-color: #fff;
}
.rocket-swiper-position.hide-swiper-option .rocket-swiper-paging {
  bottom: 20px;
}

.rocket-swiper-3d {
  width: 67%;
  margin: 0 auto;
  overflow: visible;
}
.rocket-swiper-3d .swiper-slide {
  opacity: 0;
  background-color: #000;
}
.rocket-swiper-3d .rocket-swiper-slide-inner {
  opacity: 0.6;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.rocket-swiper-3d .rocket-image__option {
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
}
.rocket-swiper-3d .swiper-slide-prev, .rocket-swiper-3d .swiper-slide-active, .rocket-swiper-3d .swiper-slide-next {
  opacity: 1;
}
.rocket-swiper-3d .swiper-slide-active .rocket-swiper-slide-inner {
  opacity: 1;
}
.rocket-swiper-3d .swiper-slide-active .rocket-image__option {
  opacity: 1;
  transition: opacity 0.3s 0.2s ease;
  -webkit-transition: opacity 0.3s 0.2s ease;
}

.rocket-swiper-type-progressbar .rocket-swiper-paging {
  background-color: #DCE2E9;
}
.rocket-swiper-type-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--mt-global-color-yellow);
}

.overflow-visible .rocket-swiper-box {
  overflow: visible;
}

.rocket-swiper-visible .rocket-widget__swiper {
  overflow: hidden;
}
.rocket-swiper-visible .rocket-swiper-box {
  overflow: visible;
}

@media (min-width: 992px) {
  .rocket-swiper-control:hover {
    background-color: var(--mt-global-color-yellow);
    border: 1px solid var(--mt-global-color-yellow);
  }
  .rocket-swiper-control:hover .bi {
    background-color: #fff;
  }
  .rocket-swiper-paging .bullet:hover {
    background-color: var(--mt-global-color-yellow);
  }
  .rocket-swiper-position .rocket-swiper-control:hover {
    background-color: transparent;
  }
  .rocket-swiper-position .rocket-swiper-control:hover .bi {
    background-color: #fff;
  }
  .rocket-swiper-position .rocket-swiper-paging .bullet:hover {
    background-color: #fff;
  }
  .overflow-visible-pc .rocket-swiper-box {
    overflow: visible;
  }
}
@media (max-width: 991.98px) {
  .rocket-swiper-wrapper {
    padding: 0;
  }
  .rocket-swiper-control {
    width: 0.6rem;
    height: 0.6rem;
  }
  .rocket-swiper-control .bi {
    width: 0.2rem;
    height: 0.2rem;
  }
  .rocket-swiper-paging {
    margin: 0.3rem 0 0;
    grid-gap: 0 0.1rem;
  }
  .rocket-swiper-paging .bullet {
    width: 1rem;
    height: 4px;
    border-radius: 2px;
    margin: 0;
  }
  .rocket-swiper-option {
    width: 100%;
    height: 0.42rem;
    font-size: 0.24rem;
    line-height: 1em;
  }
  .rocket-swiper-position .rocket-swiper-paging {
    bottom: 0.9rem;
  }
  .rocket-swiper-position.hide-swiper-option .rocket-swiper-paging {
    bottom: 0.4rem;
  }
  .rocket-swiper-3d {
    width: 60.8vw;
    max-width: none;
  }
  .rocket-swiper-type-progressbar .rocket-swiper-paging {
    height: 1px;
    margin: 0.63rem 0 0;
  }
  .rocket-swiper-type-progressbar .swiper-pagination-progressbar-fill {
    height: 4px;
    top: unset;
    bottom: 0;
  }
  .overflow-visible-app .rocket-swiper-box {
    overflow: visible;
  }
}
/****** 
 * 组件 — 选项卡
 *****/
.rocket-widget__tabPanel {
  position: relative;
  margin: 0 auto;
}

.rocket-layout-tabPanel {
  width: 100%;
  position: relative;
}

.rocket-tabPanel-tabbox {
  width: 100%;
  position: relative;
  -webkit-flex: none;
          flex: none;
  margin: 0 0 2rem;
}

.rocket-tabPanel-tab {
  width: 100%;
  position: relative;
  text-align: center;
}
.rocket-tabPanel-tab .swiper-slide {
  cursor: pointer;
  overflow: hidden;
  width: auto;
}
.rocket-tabPanel-tab .swiper-slide:last-child {
  margin: 0;
}
.rocket-tabPanel-tab .swiper-slide.current .hover {
  display: block;
}
.rocket-tabPanel-tab .swiper-slide.current .deft {
  display: none;
}
.rocket-tabPanel-tab .trigger {
  width: 100%;
  height: 58px;
  border-radius: 29px;
  font-size: 1.1rem;
  line-height: 1em;
  color: #999;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
  color: inherit;
  cursor: pointer;
}
.rocket-tabPanel-tab .icon {
  -webkit-flex: none;
          flex: none;
}
.rocket-tabPanel-tab .icon img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: contain;
  object-position: center center;
}
.rocket-tabPanel-tab .deft {
  display: block;
}
.rocket-tabPanel-tab .hover {
  display: none;
}

.rocket-tabPanel-tabcont {
  width: 100%;
  -webkit-flex: 1;
          flex: 1;
  position: relative;
}

.rocket-tabPanel-panel {
  display: none;
}
.rocket-tabPanel-panel.active {
  display: block;
}

.rocket-tabPanel-inner {
  width: 100%;
  position: relative;
}

.rocket-tabpanel-h {
  display: grid;
}

.rocket-tabPanel-tabsel {
  width: 100%;
  position: relative;
  z-index: 20;
}

@media (min-width: 992px) {
  .rocket-widget__tabPanel {
    max-width: 100%;
  }
  .rocket-tabPanel-tabbox {
    width: auto;
  }
  .rocket-tabPanel-tab .swiper-slide:not(.current):hover .deft {
    display: none;
  }
  .rocket-tabPanel-tab .swiper-slide:not(.current):hover .hover {
    display: block;
  }
  .rocket-tabpanel-h {
    grid-template-columns: 11rem 1fr;
  }
  .rocket-tabpanel-h .rocket-tabPanel-tabbox {
    height: 100%;
    border-radius: 21px 0px;
    padding: 30px 0;
    margin: 0;
  }
  .rocket-tabpanel-h .rocket-tabPanel-tab .swiper-wrapper {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .rocket-tabpanel-h .rocket-tabPanel-tab .swiper-slide {
    -webkit-flex: none;
            flex: none;
    width: 100%;
  }
  .rocket-tabPanel-inflex .rocket-tabPanel-tabbox {
    display: -webkit-inline-flex;
    display: inline-flex;
  }
}
@media (max-width: 991.98px) {
  .rocket-layout-tabPanel {
    width: -webkit-calc(100% + 1rem);
    width: calc(100% + 1rem);
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
    overflow: hidden;
  }
  .rocket-tabPanel-tabbox {
    margin: 0 0 0.9rem;
    background-color: transparent;
    border: none;
    border-radius: 0px;
  }
  .rocket-tabPanel-tab:not(.rocket-tabPanel-tabswip) .swiper-wrapper {
    display: grid;
  }
  .rocket-tabPanel-tabswip .swiper-slide {
    width: auto;
    white-space: nowrap;
  }
  .rocket-tabsel-head {
    width: 100%;
    background-color: var(--mt-global-color-blue);
    height: 1.1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    position: relative;
    color: #fff;
    font-size: 0.32rem;
    line-height: 1em;
  }
  .rocket-tabsel-head .bi {
    -webkit-flex: none;
            flex: none;
    width: 0.34rem;
    height: 100%;
    display: block;
    background-color: #fff;
    position: absolute;
    right: 0.38rem;
    top: 0;
    mask: url('data:image/svg+xml;utf8,<svg width="753" height="441" viewBox="0 0 753 441" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_291_4)"><path d="M450 356.7L722.3 84.5L648.7 11L376.5 283.2L104.3 11L30.7001 84.5L303 356.7L376.5 430.3L450 356.7Z" fill="currentColor"/></g><defs><clipPath id="clip0_291_4"><rect width="441" height="753" transform="matrix(0 1 -1 0 753 0)"/></clipPath></defs></svg>') no-repeat center/contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg width="753" height="441" viewBox="0 0 753 441" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_291_4)"><path d="M450 356.7L722.3 84.5L648.7 11L376.5 283.2L104.3 11L30.7001 84.5L303 356.7L376.5 430.3L450 356.7Z" fill="currentColor"/></g><defs><clipPath id="clip0_291_4"><rect width="441" height="753" transform="matrix(0 1 -1 0 753 0)"/></clipPath></defs></svg>') no-repeat center/contain;
  }
  .rocket-tabsel-dropdown {
    width: 100%;
    display: none;
    background-color: var(--mt-global-color-blue);
    color: #fff;
    font-size: 0.32rem;
    line-height: 2em;
    text-align: center;
    border-top: solid 1px rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 0;
    top: 100%;
    padding: 0.3rem 0;
  }
  .rocket-tabsel-list li {
    padding: 0.1rem 0;
  }
  .rocket-tabsel-list li.current {
    background-color: #67A0DA;
  }
  .rocket-tabPanel-tabsel {
    margin: 0 0 0.55rem;
  }
  .rocket-tabPanel-tabsel.is-open .rocket-tabsel-head .bi {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
}
/****** 
 * 组件 — 动态调用
 *****/
.rocket-widget__dynamic {
  position: relative;
  margin: 0 auto;
}

/****** 
 * 组件 — 锚点导航
 *****/
.rocket-widget__anchor {
  width: 100%;
  background: #F3F4F6;
  position: sticky;
  top: 0;
  margin: 0 auto;
  z-index: 1;
}
.rocket-widget__anchor.is-fixed {
  position: fixed !important;
  left: 0;
  z-index: 50;
}

.rocket-block-anchor {
  margin: 0 auto;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
          align-items: stretch;
  height: 3.5rem;
}
.rocket-block-anchor::after {
  content: "";
  display: block;
  width: 100vw;
  height: 3px;
  background: #E3E5E8;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}

.rocket-anchor-nav {
  max-width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 5;
  font-size: max(14px, 0.8rem);
  line-height: 1.5em;
  color: var(--mt-global-color-black);
}
.rocket-anchor-nav .swiper-slide {
  width: auto;
}
.rocket-anchor-nav .trigger {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
  font-weight: 500;
  cursor: pointer;
  padding: 0 0.5rem;
}
.rocket-anchor-nav .trigger::after {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-flex: none;
          flex: none;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  opacity: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  height: 3px;
  background: var(--mt-global-color-blue-light);
}
.rocket-anchor-nav .item-icon {
  -webkit-flex: none;
          flex: none;
}
.rocket-anchor-nav .item-icon img {
  object-fit: contain;
  object-position: center center;
  display: block;
}
.rocket-anchor-nav .item-icon .hover {
  display: none;
}
.rocket-anchor-nav .current .trigger {
  font-weight: bold;
  color: var(--mt-global-color-blue-light);
}
.rocket-anchor-nav .current .trigger::after {
  width: 100%;
  opacity: 1;
}
.rocket-anchor-nav .current .item-icon .deft {
  display: none;
}
.rocket-anchor-nav .current .item-icon .hover {
  display: block;
}

@media (min-width: 992px) {
  .rocket-anchor-nav .swiper-slide {
    margin: 0 2.5rem 0 0;
  }
  .rocket-anchor-nav .swiper-slide:hover {
    color: var(--mt-global-color-blue-light);
  }
}
@media (max-width: 991.98px) {
  .rocket-widget__anchor {
    overflow: hidden;
  }
  .rocket-widget__anchor.is-end::after {
    display: none;
  }
  .rocket-widget__anchor.is-beginning::before {
    display: none;
  }
  .rocket-block-anchor {
    height: 1.3rem;
  }
  .rocket-anchor-nav {
    overflow: visible;
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  .rocket-anchor-nav .trigger {
    padding: 0 0.24rem;
  }
}
/****** 
 * 样式 — justify
 *****/
/* 居中 */
.justify-center .rocket-icon-item .item-box {
  -webkit-justify-content: center;
          justify-content: center;
}
.justify-center .rocket-icon-body {
  width: auto;
  -webkit-flex: unset;
          flex: unset;
}

/****** 
 * 样式 — textAlign
 *****/
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media (min-width: 992px) {
  .text-left-web {
    text-align: left;
  }
  .text-center-web {
    text-align: center;
  }
  .text-right-web {
    text-align: right;
  }
}
@media (max-width: 991.98px) {
  .text-left-app {
    text-align: left;
  }
  .text-center-app {
    text-align: center;
  }
  .text-right-app {
    text-align: right;
  }
}
/****** 
 * 特殊组件-单文多图轮播
 *****/
.custom-widget_multimg {
  width: 100%;
  position: relative;
  margin: 4.5rem 0 6rem;
}

.custom-multimg-block {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 55.5%;
  grid-gap: 0 6.64%;
}

.custom-multimg-body {
  padding: 2.25rem 0 3.5rem;
}
.custom-multimg-body .lvtit {
  font-size: 1.9rem;
  line-height: 2.3rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.custom-multimg-body .typelist {
  font-size: 0.9rem;
  line-height: 1.2rem;
  display: grid;
  grid-gap: 1rem 0;
  margin: 1.5rem 0 0;
}
.custom-multimg-body .typelist p, .custom-multimg-body .typelist li {
  padding-left: 1.9rem;
  position: relative;
}
.custom-multimg-body .typelist p::before, .custom-multimg-body .typelist li::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url("/img/common/list-check.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}

.custom-multimg-swiper {
  width: 100%;
  position: relative;
  overflow: visible;
}
.custom-multimg-swiper .imgs {
  width: 100%;
  padding: 59.15% 0 0;
  overflow: hidden;
  position: relative;
  border-radius: 0.8rem;
}
.custom-multimg-swiper .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.custom-multimg-swiper .swiper-slide {
  z-index: 5;
  pointer-events: none;
}
.custom-multimg-swiper .swiper-slide-active {
  z-index: 10;
  pointer-events: auto;
}

.custom-multimg-paging {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  position: absolute;
  left: 0;
  bottom: 1.5rem;
}
.custom-multimg-paging .bullet {
  background: #E8EAEE;
}
.custom-multimg-paging .bullet::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--mt-global-color-blue-light);
}
.custom-multimg-paging .bullet.active {
  background: #E8EAEE;
}
.custom-multimg-paging .bullet.active::after {
  animation: bulletAntd 3s ease both;
  -webkit-animation: bulletAntd 3s ease both;
}

@media (min-width: 992px) {
  .custom-multimg-media {
    padding: 20px 0 0;
    overflow: hidden;
  }
  .custom-multimg-rlt {
    direction: rtl;
  }
  .custom-multimg-rlt .custom-multimg-paging {
    padding-left: 62.14%;
  }
  .custom-multimg-rlt > * {
    direction: ltr;
  }
}
@media (max-width: 991.98px) {
  .custom-widget_multimg {
    margin: 1rem 0 1.1rem;
  }
  .custom-multimg-block {
    display: block;
  }
  .custom-multimg-body {
    padding: 0;
  }
  .custom-multimg-body .lvtit {
    font-size: 0.42rem;
    line-height: 0.54rem;
    margin-bottom: 0.2rem;
  }
  .custom-multimg-body .typelist {
    margin: 0.3rem 0 0;
    font-size: 0.3rem;
    line-height: 0.48rem;
    grid-gap: 0.1rem 0;
  }
  .custom-multimg-body .typelist p, .custom-multimg-body .typelist li {
    padding-left: 0.5rem;
  }
  .custom-multimg-body .typelist p::before, .custom-multimg-body .typelist li::before {
    width: 0.3rem;
    height: 0.48rem;
  }
  .custom-multimg-media {
    margin: 0.85rem 0 0;
  }
  .custom-multimg-swiper .imgs {
    border-radius: 0.16rem;
  }
  .custom-multimg-paging {
    position: static;
    margin: 0.3rem 0 0;
    -webkit-justify-content: center;
            justify-content: center;
  }
}
/* 针对后台 */
.layout-element .custom-multimg-swiper .swiper-slide {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -5%);
  -webkit-transform: translate(0, -5%);
}
.layout-element .custom-multimg-swiper .swiper-slide:first-child {
  z-index: 10;
  transform: none;
  -webkit-transform: none;
}

/****** 
 * 动态组件-同级栏目
 *****/
.dynamic-widget_samelevel {
  width: 100%;
  position: relative;
  margin: 5rem 0;
  z-index: 10;
}

.dynamic-samelevel-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
.dynamic-samelevel-swiper .slide-box {
  width: 100%;
  height: 9.25rem;
  display: grid;
  -webkit-align-items: stretch;
          align-items: stretch;
  position: relative;
  grid-template-columns: 12.5rem 1fr;
}
.dynamic-samelevel-swiper .slide-imgs {
  height: 100%;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  overflow: hidden;
  position: relative;
}
.dynamic-samelevel-swiper .slide-imgs .imgs {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
}
.dynamic-samelevel-swiper .slide-imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 85% center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.dynamic-samelevel-swiper .slide-body {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  position: relative;
  padding: 1rem 1.75rem 0.9rem;
}
.dynamic-samelevel-swiper .slide-body::after {
  content: "";
  display: block;
  width: 70.83%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
  border-right: solid 1px #C8CDD9;
  border-bottom: solid 1px #C8CDD9;
  border-bottom-right-radius: 0.8rem;
}
.dynamic-samelevel-swiper .slide-title {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: bold;
  min-height: 2.15rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  margin-bottom: 0.5rem;
}
.dynamic-samelevel-swiper .slide-desc {
  font-size: max(14px, 0.8rem);
  line-height: 1.2rem;
  overflow: hidden;
  max-height: 2.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.dynamic-samelevel-swiper .slide-bot {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  position: relative;
}

.page-theme-blue .dynamic-widget_samelevel {
  color: #fff;
}
.page-theme-blue .dynamic-samelevel-swiper .slide-body::after {
  border-color: #fff;
}
.page-theme-blue .dynamic-samelevel-swiper .innosc-btn-learn {
  color: inherit;
}

@media (min-width: 992px) {
  .dynamic-samelevel-swiper .swiper-slide:hover .slide-imgs img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  .dynamic-samelevel-swiper .swiper-slide:hover .slide-body::after {
    border-color: var(--mt-global-color-blue-light);
  }
  .dynamic-samelevel-swiper .swiper-slide:hover .innosc-btn-learn .bi-arrow::after {
    animation: btnAnt 0.3s both;
    -webkit-animation: btnAnt 0.3s both;
  }
  .mt80 .dynamic-widget_samelevel {
    margin-top: 4rem;
  }
}
@media (max-width: 991.98px) {
  .dynamic-widget_samelevel {
    margin: 1rem 0 1.2rem;
  }
  .dynamic-samelevel-swiper .swiper-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.3rem 0;
  }
  .dynamic-samelevel-swiper .slide-box {
    height: 2.5rem;
    grid-template-columns: 2.5rem 1fr;
  }
  .dynamic-samelevel-swiper .slide-imgs {
    border-top-left-radius: 0.16rem;
    border-bottom-left-radius: 0.16rem;
  }
  .dynamic-samelevel-swiper .slide-body {
    padding: 0.07rem 0.45rem 0.23rem;
    grid-gap: 0.3rem 0;
  }
  .dynamic-samelevel-swiper .slide-body::after {
    width: 100%;
    border-bottom-right-radius: 0.16rem;
  }
  .dynamic-samelevel-swiper .slide-title {
    font-size: 0.3rem;
    line-height: 0.36rem;
    min-height: 0.72rem;
    margin-bottom: 0.1rem;
  }
  .dynamic-samelevel-swiper .slide-desc {
    font-size: 0.24rem;
    line-height: 0.36rem;
    max-height: 0.72rem;
  }
}
/****** 
 * 动态组件-质量方针-企业使命
 *****/
.dynamic-widget_qualCorp {
  width: 100%;
  position: relative;
}

.dynamic-qualcorp-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  -webkit-align-items: center;
          align-items: center;
}
.dynamic-qualcorp-box.antd-active .dynamic-qualcorp-item.first {
  transform: none;
  -webkit-transform: none;
}
.dynamic-qualcorp-box.antd-active .dynamic-qualcorp-item.cir {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
}

.dynamic-qualcorp-item {
  position: relative;
  width: -webkit-calc(100% + 2rem);
  width: calc(100% + 2rem);
  padding: -webkit-calc(100% + 2rem) 0 0;
  padding: calc(100% + 2rem) 0 0;
}
.dynamic-qualcorp-item .item-card {
  width: 100%;
  padding: 100% 0 0;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.dynamic-qualcorp-item .card-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.dynamic-qualcorp-item .card-bg .color {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.dynamic-qualcorp-item .card-bg .imgs {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
}
.dynamic-qualcorp-item .card-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.dynamic-qualcorp-item .card-lvtit {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-size: 1.8rem;
  line-height: 2.3rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.dynamic-qualcorp-item .card-text {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #fff;
  padding: 0 3.4rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  font-size: 1rem;
  line-height: 1.5rem;
}
.dynamic-qualcorp-item.cir {
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: opacity cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s, -webkit-transform cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s;
  transition: opacity cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s, -webkit-transform cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s;
  transition: opacity cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s, transform cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s;
  transition: opacity cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s, transform cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s, -webkit-transform cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s;
  -webkit-transition: opacity cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s, transform cubic-bezier(0.01, 0.08, 0.49, 0.95) 1s;
}
.dynamic-qualcorp-item.cir .card-bg {
  border-radius: 50%;
}
.dynamic-qualcorp-item.cir.item-lvtit .card-bg .color {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--mt-global-color-blue);
}
.dynamic-qualcorp-item.first {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.01, 0.08, 0.49, 0.95);
  transition: -webkit-transform 1s cubic-bezier(0.01, 0.08, 0.49, 0.95);
  transition: transform 1s cubic-bezier(0.01, 0.08, 0.49, 0.95);
  transition: transform 1s cubic-bezier(0.01, 0.08, 0.49, 0.95), -webkit-transform 1s cubic-bezier(0.01, 0.08, 0.49, 0.95);
  -webkit-transition: transform 1s cubic-bezier(0.01, 0.08, 0.49, 0.95);
  transform: translateX(calc(150% - 4rem));
  -webkit-transform: translateX(-webkit-calc(150% - 4rem));
}
.dynamic-qualcorp-item.first .card-bg {
  width: 70.8%;
  height: 70.8%;
}
.dynamic-qualcorp-item.first .card-bg .color {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--mt-global-color-blue-light);
  border-radius: 16px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  left: 0;
  top: 0;
}
.dynamic-qualcorp-item:nth-child(1) {
  z-index: 4;
}
.dynamic-qualcorp-item:nth-child(2) {
  z-index: 3;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  margin-left: -0.7rem;
}
.dynamic-qualcorp-item:nth-child(3) {
  z-index: 2;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
  margin-left: -1.3rem;
}
.dynamic-qualcorp-item:nth-child(3) .card-lvtit {
  padding-left: 1.6rem;
}
.dynamic-qualcorp-item:nth-child(4) {
  z-index: 1;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
  margin-left: -2rem;
}
.dynamic-qualcorp-item:nth-child(4) .card-text {
  padding: 0 2.6rem 0 4.25rem;
}

@media (max-width: 991.98px) {
  .dynamic-qualcorp-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.4rem 0;
  }
  .dynamic-qualcorp-item {
    width: 117%;
    padding: 117% 0 0;
  }
  .dynamic-qualcorp-item .card-lvtit {
    font-size: 0.42rem;
    line-height: 0.54rem;
  }
  .dynamic-qualcorp-item .card-text {
    padding: 0 0.32rem 0 0.74rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .dynamic-qualcorp-item.cir {
    transform: translateX(-25%);
    -webkit-transform: translateX(-25%);
  }
  .dynamic-qualcorp-item.cir.item-lvtit {
    width: 102%;
    padding: 102% 0 0;
  }
  .dynamic-qualcorp-item.first {
    width: 108%;
    height: 108%;
    padding: 0;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
  }
  .dynamic-qualcorp-item.first .card-bg {
    width: 70.8%;
    height: 70.8%;
  }
  .dynamic-qualcorp-item.first .card-bg .color {
    border-radius: 0.16rem;
  }
  .dynamic-qualcorp-item:nth-child(2), .dynamic-qualcorp-item:nth-child(4) {
    margin-left: -16%;
  }
  .dynamic-qualcorp-item:nth-child(2) .card-text, .dynamic-qualcorp-item:nth-child(4) .card-text {
    padding: 0 0.3rem 0 0.78rem;
  }
  .dynamic-qualcorp-item:nth-child(3) {
    margin: 0;
  }
  .dynamic-qualcorp-item:nth-child(3) .card-lvtit {
    padding: 0;
  }
}
/* 针对后台 */
.layout-element .dynamic-qualcorp-item.first {
  transform: none;
  -webkit-transform: none;
}
.layout-element .dynamic-qualcorp-item.cir {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
}

/****** 
 * 动态组件-质量管理体系-质量机构
 *****/
@-webkit-keyframes cardIcon {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes cardIcon {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.dynamic-widget_qualOrg {
  width: 100%;
  position: relative;
}

.dynamic-qualorg-box {
  width: 100%;
  position: relative;
  background: #F3F4F6;
}
.dynamic-qualorg-box.web {
  padding: 2.5rem 2.5rem 1.9rem;
  border-radius: 0.8rem;
}
.dynamic-qualorg-box.app {
  display: grid;
  grid-gap: 0.15rem 0;
  padding: 0.45rem;
  border-radius: 0.16rem;
}

.dynamic-qualorg-layout {
  width: 100%;
  height: 13.75rem;
  display: grid;
  position: relative;
  grid-gap: 0 10px;
  grid-template-columns: 9rem 1fr 9rem;
}

.dynamic-qualorg-webcard .card-head {
  width: 100%;
  height: 7rem;
  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;
  position: relative;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.dynamic-qualorg-webcard .card-lvtit {
  font-size: 1rem;
  line-height: 1.2rem;
  color: #fff;
  font-weight: 500;
}
.dynamic-qualorg-webcard .card-lvtit img {
  -webkit-flex: none;
          flex: none;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto 0.3rem;
}
.dynamic-qualorg-webcard .card-popbox {
  display: none;
}
.dynamic-qualorg-webcard .card-dropdown {
  width: 100%;
  background: #C0DBF0;
  border: dashed 1px #3B609B;
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: -webkit-calc(100% + 1rem);
  top: calc(100% + 1rem);
  padding: 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.dynamic-qualorg-webcard .card-list {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  grid-gap: 0 10px;
}
.dynamic-qualorg-webcard .card-list .item {
  position: relative;
}
.dynamic-qualorg-webcard .card-list .item.active .trigger {
  background: #0066AB;
  color: #fff;
}
.dynamic-qualorg-webcard .card-list .item:hover .trigger {
  background: #0066AB;
  color: #fff;
}
.dynamic-qualorg-webcard .card-list .trigger {
  background: #fff;
  border: solid 1px #0066AB;
  white-space: nowrap;
  height: 1.7rem;
  padding: 0 0.5em;
  font-size: max(14px, 0.8rem);
  line-height: 1em;
  color: #0066AB;
  min-width: 6.75em;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  border-radius: 0.9rem;
}
.dynamic-qualorg-webcard.has-subnav .card-head::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 19px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #EAEDF7;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
.dynamic-qualorg-webcard.active .card-lvtit img {
  -webkit-animation: cardIcon 0.5s ease both;
          animation: cardIcon 0.5s ease both;
}

.dynamic-qualorg-laylt {
  background: #EEF6E8;
  border: dashed 1px #72BF44;
  padding: 1rem;
}
.dynamic-qualorg-laylt .card-head {
  background: #72BF44;
}
.dynamic-qualorg-laylt .dynamic-qualorg-webcard.active:not(.has-subnav) .card-head {
  background: #63AF3C;
  box-shadow: 0px 4px 10px 0px rgba(69, 182, 2, 0.4);
}

.dynamic-qualorg-laymid {
  background: #E9ECF6;
  border: dashed 1px #3B609B;
  padding: 1rem;
}
.dynamic-qualorg-laymid .card-head {
  background: #3B609B;
}
.dynamic-qualorg-laymid .dynamic-qualorg-webcard.active:not(.has-subnav) .card-head {
  background: #36578C;
  box-shadow: 0px 4px 10px 0px rgba(31, 141, 243, 0.4);
}

.dynamic-qualorg-laymid-top {
  width: 100%;
  display: grid;
  grid-template-columns: 7rem 1fr 7rem;
  grid-gap: 0 10px;
  position: relative;
}

.dynamic-qualorg-layrt {
  background: #E1F4FD;
  border: dashed 1px #0095DA;
  padding: 1rem;
}
.dynamic-qualorg-layrt .card-head {
  background: #0095DA;
}
.dynamic-qualorg-layrt .dynamic-qualorg-webcard.active:not(.has-subnav) .card-head {
  background: #0082C6;
  box-shadow: 0px 4px 10px 0px rgba(0, 130, 198, 0.4);
}

.dynamic-qualorg-popbox {
  width: 100%;
  min-height: 8.4rem;
  background: #fff;
  position: relative;
  padding: 1.5rem;
  margin: 1rem 0 0;
  box-shadow: 1px 1px 10px 0px rgba(0, 163, 233, 0.25);
}
.dynamic-qualorg-popbox .pop-lvtit {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.dynamic-qualorg-popbox .pop-text {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
.dynamic-qualorg-popbox .pop-handle {
  margin: 1.25rem 0 0;
  display: -webkit-flex;
  display: flex;
}

.dynamic-qualorg-appcard {
  width: 100%;
  position: relative;
}
.dynamic-qualorg-appcard .card-head {
  width: 100%;
  height: 0.8rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  border-radius: 4px;
}
.dynamic-qualorg-appcard .card-lvtit {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-weight: bold;
  color: #fff;
}
.dynamic-qualorg-appcard .card-lvtit img {
  -webkit-flex: none;
          flex: none;
  width: 0.7rem;
  height: 0.7rem;
  display: block;
  margin: 0 4px 0 0;
}
.dynamic-qualorg-appcard .card-body {
  padding: 0.35rem 0.3rem 0.45rem;
}
.dynamic-qualorg-appcard .card-text {
  font-size: 0.24rem;
  line-height: 0.36rem;
  text-align: center;
}
.dynamic-qualorg-appcard .card-handle {
  margin: 0.26rem 0 0;
}
.dynamic-qualorg-appcard .card-list {
  display: grid;
  grid-gap: 0.35rem 0;
}
.dynamic-qualorg-appcard .card-list .item-title {
  font-weight: bold;
  text-align: center;
  font-size: 0.28rem;
  line-height: 0.36rem;
  margin-bottom: 0.14rem;
}

.dynamic-qualorg-apptop {
  width: 100%;
  position: relative;
  padding: 0.3rem 0.2rem 0.05rem;
  background: #EEF6E8;
  border: dashed 1px #72BF44;
}
.dynamic-qualorg-apptop .card-head {
  background: #72BF44;
}

.dynamic-qualorg-appmid {
  padding: 0.3rem 0.2rem;
  background: #E9ECF6;
  border: dashed 1px #3B609B;
  display: grid;
  grid-gap: 0.1rem 0;
}
.dynamic-qualorg-appmid .card-head {
  background: #3B609B;
}
.dynamic-qualorg-appmid .card-body {
  border: dashed 1px #3B609B;
  background: #C0DBF0;
  border-top: none;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.dynamic-qualorg-appbot {
  padding: 0.3rem 0.2rem 0.05rem;
  background: #E1F4FD;
  border: dashed 1px #0095DA;
}
.dynamic-qualorg-appbot .card-head {
  background: #0095DA;
}

/****** 
 * 动态组件-失效分析实验室-设备&能力
 *****/
.dynamic-widget_qualInnofa {
  width: 100%;
  position: relative;
  background: #F9FAFB;
}

.dynamic-qualInnofa-block {
  width: 100%;
  display: grid;
  min-height: 25.4rem;
  grid-template-columns: 1fr min(40%, 25.5rem);
  grid-gap: 0 13.4%;
}

.dynamic-qualInnofa-body {
  padding: 4rem 0 6.6rem;
}
.dynamic-qualInnofa-body .lvtit {
  margin-bottom: 1.5rem;
}
.dynamic-qualInnofa-body .rocket-block-text h6 {
  margin: 0 0 0.75rem;
}
.dynamic-qualInnofa-body .rocket-block-text ul {
  display: grid;
  grid-template-columns: 35% 1fr;
  grid-gap: 0.5rem 1rem;
}

.dynamic-qualInnofa-media {
  width: 100%;
  height: 100%;
  position: relative;
}

.dynamic-qualInnofa-swipbox {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-align-items: flex-start;
          align-items: flex-start;
  grid-gap: 0 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
}
.dynamic-qualInnofa-swipbox .str_move {
  position: absolute;
}

.dynamic-qualInnofa-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.dynamic-qualInnofa-swiper .swiper-wrapper {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
}
.dynamic-qualInnofa-swiper .swiper-slide {
  height: auto;
  margin-bottom: 1.5rem;
}
.dynamic-qualInnofa-swiper .imgs {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.dynamic-qualInnofa-swiper .imgs img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.dynamic-qualInnofa-swiper .imgs.web {
  border-radius: 0.8rem;
  padding: 133.33% 0 0;
}
.dynamic-qualInnofa-swiper .imgs.app {
  border-radius: 0.2rem;
  padding: 73.33% 0 0;
}

@media (min-width: 992px) {
  .dynamic-qualInnofa-swiper .str_move {
    width: 100%;
    top: 0;
  }
}
@media (max-width: 991.98px) {
  .dynamic-qualInnofa-block {
    min-height: 0;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }
  .dynamic-qualInnofa-body {
    padding: 0.8rem 0 0.65rem;
  }
  .dynamic-qualInnofa-body .lvtit {
    margin-bottom: 0.6rem;
  }
  .dynamic-qualInnofa-body .rocket-block-text h6 {
    margin: 0 0 0.4rem;
  }
  .dynamic-qualInnofa-body .rocket-block-text ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.12rem 0.8rem;
  }
  .dynamic-qualInnofa-swipbox {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.15rem 0;
    position: relative;
  }
  .dynamic-qualInnofa-swiper {
    width: 100vw;
    margin: 0 -0.5rem;
  }
  .dynamic-qualInnofa-swiper .str_move {
    display: -webkit-flex;
    display: flex;
    left: 0;
  }
  .dynamic-qualInnofa-swiper .swiper-wrapper {
    width: 100%;
    display: -webkit-flex;
    display: flex;
  }
  .dynamic-qualInnofa-swiper .swiper-slide {
    width: 3rem;
    margin: 0 0.15rem 0 0;
  }
}
/****** 
 * 动态组件-可靠性管理-子栏目轮播
 *****/
.custom-widget_thumbswip {
  width: 100%;
  position: relative;
  margin: 5rem 0;
}

.custom-thumbswip {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.custom-thumbswip .slide-box {
  width: 100%;
  display: grid;
  grid-template-columns: 56.25% 1fr;
  background: #F3F4F6;
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
}
.custom-thumbswip .slide-imgs {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}
.custom-thumbswip .slide-imgs .imgs {
  width: 100%;
  padding: 58.33% 0 0;
  display: block;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
  position: relative;
}
.custom-thumbswip .slide-imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.custom-thumbswip .slide-body {
  height: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0.25rem 5rem 0 3.5rem;
}
.custom-thumbswip .slide-title {
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.custom-thumbswip .slide-handle {
  display: -webkit-flex;
  display: flex;
  margin: 2rem 0 0;
}
.custom-thumbswip .innosc-btn {
  width: 8rem;
}

.custom-thumbswip-handle {
  margin: 1.5rem 0 0;
}

.custom-thumbswip-paging {
  display: -webkit-flex;
  display: flex;
  grid-gap: 0 1.6rem;
}
.custom-thumbswip-paging .bullet {
  -webkit-flex: 1;
          flex: 1;
  position: relative;
  cursor: pointer;
}
.custom-thumbswip-paging .bullet .line {
  width: 100%;
  height: 3px;
  display: block;
  background-color: #CED7E6;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.custom-thumbswip-paging .bullet .text {
  font-size: max(14px, 0.8rem);
  line-height: 1.5em;
  margin: 0.5rem 0 0;
}
.custom-thumbswip-paging .active .line {
  background-color: var(--mt-global-color-blue-light);
}

@media (min-width: 992px) {
  .custom-thumbswip-ctrl {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .custom-widget_thumbswip {
    margin: 1rem 0 1.1rem;
  }
  .custom-thumbswip .slide-box {
    display: block;
    border-radius: 0.2rem;
  }
  .custom-thumbswip .slide-imgs {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top-right-radius: inherit;
    border-bottom-left-radius: 0px;
  }
  .custom-thumbswip .slide-imgs .imgs {
    padding: 58.46% 0 0;
    border-top-right-radius: inherit;
    border-bottom-left-radius: 0px;
  }
  .custom-thumbswip .slide-body {
    padding: 0.6rem 0.5rem;
  }
  .custom-thumbswip .slide-title {
    font-size: 0.42rem;
    line-height: 0.54rem;
    margin-bottom: 0.2rem;
  }
  .custom-thumbswip .slide-handle {
    margin: 0.6rem 0 0;
  }
  .custom-thumbswip .innosc-btn {
    width: 2.4rem;
  }
  .custom-thumbswip-option {
    margin: 0.5rem 0 0;
    font-size: 0.24rem;
    line-height: 0.36rem;
    font-weight: bold;
    color: var(--mt-global-color-gray);
    text-align: center;
  }
  .custom-thumbswip-handle {
    margin: 0.15rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    grid-gap: 0 0.35rem;
  }
  .custom-thumbswip-paging {
    width: auto !important;
    -webkit-flex: none;
            flex: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    grid-gap: 0 0.1rem;
    -webkit-justify-content: center;
            justify-content: center;
    position: static;
  }
  .custom-thumbswip-paging .bullet {
    -webkit-flex: none;
            flex: none;
    width: 0.5rem;
  }
  .custom-thumbswip-paging .bullet .line {
    height: 0.1rem;
    border-radius: 0.1rem;
  }
  .custom-thumbswip-paging .bullet .text {
    display: none;
  }
  .custom-thumbswip-ctrl {
    -webkit-flex: none;
            flex: none;
    width: 0.6rem;
    height: 0.6rem;
    display: block;
    position: relative;
    border-radius: 50%;
    background: var(--mt-global-color-blue-light);
    color: #fff;
  }
  .custom-thumbswip-ctrl .bi {
    width: 0.2rem;
    height: 0.2rem;
    display: block;
    background-color: currentColor;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  .custom-thumbswip-ctrl.prev .bi {
    -webkit-mask: url("/img/common/swip-left.svg") no-repeat center/contain;
    mask: url("/img/common/swip-left.svg") no-repeat center/contain;
  }
  .custom-thumbswip-ctrl.next .bi {
    -webkit-mask: url("/img/common/swip-right.svg") no-repeat center/contain;
    mask: url("/img/common/swip-right.svg") no-repeat center/contain;
  }
  .custom-thumbswip-ctrl.swiper-button-disabled {
    background-color: #DCDFE3;
    pointer-events: none;
  }
}
/****** 
 * 动态组件-制造服务-可靠的供应 
 *****/
.dynamic-widget_makeSupply {
  width: 100%;
  position: relative;
}

.dynamic-makesply-line {
  width: 2px;
  height: min(60vh, 420px);
  background: rgba(178, 227, 248, 0.6);
  position: sticky;
  top: -webkit-calc(25% + 3.9rem);
  top: calc(25% + 3.9rem);
}
.dynamic-makesply-line .scroll-line {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  will-change: width;
  background: #fff;
}

.dynamic-makesply-media {
  width: 100%;
  height: min(60vh, 420px);
  position: sticky;
  top: -webkit-calc(25% + 3.9rem);
  top: calc(25% + 3.9rem);
}
.dynamic-makesply-media .item {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
}
.dynamic-makesply-media .item.active {
  z-index: 5;
  opacity: 1;
}
.dynamic-makesply-media .imgs {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
}
.dynamic-makesply-media .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.dynamic-makesply-list {
  display: grid;
  grid-gap: 3.5rem 0;
}

.dynamic-makesply-item {
  color: #fff;
}
.dynamic-makesply-item .imgs {
  width: 100%;
  padding: 60.87% 0 0;
  position: relative;
  border-radius: 0.16rem;
  margin-bottom: 0.4rem;
  overflow: hidden;
}
.dynamic-makesply-item .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.dynamic-makesply-item .item-title {
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: bold;
}
.dynamic-makesply-item .item-text {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 1.25rem 0 0;
}

@media (min-width: 992px) {
  .dynamic-makesply-block {
    display: grid;
    grid-template-columns: 2px 21rem 1fr;
    grid-gap: 0 3rem;
    position: relative;
  }
  .dynamic-makesply-item {
    min-height: 80vh;
  }
  .dynamic-makesply-item:last-child {
    min-height: min(60vh, 420px);
  }
}
@media (max-width: 991.98px) {
  .dynamic-makesply-list {
    grid-gap: 0.8rem 0;
  }
  .dynamic-makesply-item .item-title {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .dynamic-makesply-item .item-text {
    font-size: 0.3rem;
    line-height: 0.48rem;
    margin: 0.2rem 0 0;
  }
}
/****** 
 * 动态组件-制造服务-市场表现-全球客户
 *****/
.dynamic-widget_makeClient {
  width: 100%;
  position: relative;
  color: #fff;
}

.dynamic-makeClient-tabbox {
  width: 100%;
  position: relative;
  padding: 1.5rem 0;
  margin-bottom: 1.8rem;
  z-index: 20;
}

.dynamic-makeClient-tabswip {
  position: relative;
  padding: 15px;
  margin: -15px;
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: bold;
  color: #fff;
}
.dynamic-makeClient-tabswip .swiper-slide {
  width: auto;
}
.dynamic-makeClient-tabswip .trigger {
  height: 1.9rem;
  background: rgba(243, 244, 246, 0.3);
  border-radius: 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0 1em;
  white-space: nowrap;
}
.dynamic-makeClient-tabswip .active {
  color: #fff;
}
.dynamic-makeClient-tabswip .active .trigger {
  background: #1F3165;
  box-shadow: -4px -4px 10px 0px rgb(1, 217, 255), 4px 4px 10px 0px rgb(1, 217, 255);
}

.dynamic-makeClient-panel {
  display: none;
}
.dynamic-makeClient-panel.active {
  display: block;
}

.dynamic-makeClient-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.dynamic-makeClient-list .item {
  position: relative;
  margin: -1px -1px 0 0;
}
.dynamic-makeClient-list .item-box {
  width: 100%;
  padding: 2.2rem;
  position: relative;
  border: solid 1px #4EBEEF;
  background: #0072B3;
}
.dynamic-makeClient-list .imgs {
  width: 100%;
  padding: 56.52% 0 0;
  overflow: hidden;
  position: relative;
}
.dynamic-makeClient-list .imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}

.dynamic-makeClient-ctrl {
  width: 1.2rem;
  height: 0.6rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 10;
}
.dynamic-makeClient-ctrl .bi {
  width: 0.18rem;
  height: 0.18rem;
  display: block;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  background-color: currentColor;
}
.dynamic-makeClient-ctrl.prev {
  left: -0.5rem;
  background: -webkit-linear-gradient(left, #1486CB 54.44%, rgba(20, 133, 202, 0) 100%);
  background: linear-gradient(90deg, #1486CB 54.44%, rgba(20, 133, 202, 0) 100%);
}
.dynamic-makeClient-ctrl.prev .bi {
  left: 0.4rem;
  -webkit-mask: url("/img/common/swip-left.svg") no-repeat left center/contain;
  mask: url("/img/common/swip-left.svg") no-repeat left center/contain;
}
.dynamic-makeClient-ctrl.next {
  right: -0.5rem;
  background: -webkit-linear-gradient(right, #1486CB 54.44%, rgba(20, 133, 202, 0) 100%);
  background: linear-gradient(270deg, #1486CB 54.44%, rgba(20, 133, 202, 0) 100%);
}
.dynamic-makeClient-ctrl.next .bi {
  right: 0.4rem;
  -webkit-mask: url("/img/common/swip-right.svg") no-repeat right center/contain;
  mask: url("/img/common/swip-right.svg") no-repeat right center/contain;
}
.dynamic-makeClient-ctrl.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

@media (min-width: 992px) {
  .dynamic-makeClient-tabswip .swiper-slide:hover {
    color: #fff;
  }
  .dynamic-makeClient-tabswip .swiper-slide:hover .trigger {
    background: #1F3165;
  }
  .dynamic-makeClient-ctrl {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .dynamic-makeClient-tabbox {
    padding: 0.5rem 0;
    margin-bottom: 0.2rem;
  }
  .dynamic-makeClient-tabswip {
    padding: 10px;
    margin: -10px;
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  .dynamic-makeClient-tabswip .trigger {
    height: 0.6rem;
    border-radius: 0.3rem;
    padding: 0 0.36rem;
  }
  .dynamic-makeClient-tabswip .active .trigger {
    box-shadow: -2px -2px 5px 0px rgb(1, 217, 255), 2px 2px 5px 0px rgb(1, 217, 255);
  }
  .dynamic-makeClient-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .dynamic-makeClient-list .item-box {
    padding: 0.48rem 0.54rem;
  }
}
/****** 
 * 前台自定义样式
 *****/