@charset "UTF-8";
/** 页面主体 **/
body {
  --mt-global-color-theme: #0D713A;
  --mt-global-color-theme-h: #00682F;
  --mt-global-color-green-lighter: #11A453;
  --mt-global-color-green-light: #007F39;
  --mt-global-color-green-dark: #00692F;
  --mt-global-color-green-darker: #222F2F;
  --mt-global-color-black: #333;
  --mt-global-color-white: #fff;
  --mt-global-color-red: #FF3A3A;
  --mt-global-color-yellow: #CBB25B;
  --mt-global-color-yellow-dark: #A18936;
  --mt-global-color-blue: #163881;
  --mt-global-color-purple: #6D1794;
  --mt-global-color-black_20: #333;
  --mt-global-color-black_40: #666;
  --mt-global-color-black_60: #999;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.color-theme {
  color: var(--mt-global-color-theme);
}

/* 针对后台 */
.layout-element .rocket-content__inner {
  color: inherit;
}

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1270px) {
  .rocket-content__inner, .rocket-fulldiv-inner, .rocket-banner-inner {
    width: calc(100% - 10rem) !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 headlineAntd {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
/******/
/* 公共按钮样式 */
@keyframes btnAnt {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: none;
  }
}
@keyframes longRightAnt {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
.btnbox {
  width: 100%;
  display: flex;
}

.pub-btn {
  min-width: 9rem;
  height: 2.8rem;
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.56em;
  --line-height: 1.56em;
  border: solid 1px transparent;
  border-radius: 1.4rem;
  display: block;
  --padding: 0 2.5rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pub-btn > * {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--padding);
  transition: none;
  -webkit-transition: none;
  grid-gap: 0 0.5rem;
  position: relative;
  border-radius: inherit;
}
.pub-btn .bi {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  background-color: currentColor;
}
.pub-btn .bi-arrow-right {
  mask: url('data:image/svg+xml;utf8,<svg width="11" height="14" viewBox="0 0 11 14" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M0.857422 12.9766L1.47559 12.1719L5.43457 7.02246L1.47559 1.87207L0.857423 1.06738L5.08399 1.06738L5.23438 1.26269L9.42773 6.7168L9.66211 7.02246L9.42773 7.32715L5.23437 12.7812L5.08398 12.9766L0.857422 12.9766Z"/></svg>') no-repeat center;
}

.pub-btn-normal {
  background-color: var(--mt-global-color-green-light);
  border-color: var(--mt-global-color-green-light);
  color: #fff;
}

.pub-btn-normal-stroke {
  background-color: transparent;
  border-color: var(--mt-global-color-green-light);
  color: var(--mt-global-color-green-light);
}

.pub-btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--mt-global-color-theme);
}

.pub-btn-black {
  background: linear-gradient(90deg, #312F2F 0%, #3A3A3A 100%);
  border: none;
  color: #fff;
}

.pub-btn-learn {
  display: flex;
  align-items: center;
  position: relative;
  font-size: max(14px, 0.9rem);
  line-height: 1.33em;
  color: var(--mt-global-color-theme);
}
.pub-btn-learn > * {
  display: flex;
  align-items: center;
  grid-gap: 0 0.75rem;
}
.pub-btn-learn .bi {
  flex: none;
  width: 2rem;
  height: 2rem;
  display: blcok;
  background: url("/img/common/right-circle.svg") no-repeat center center;
  background-size: contain;
  position: relative;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.pub-btn-long {
  display: flex;
  position: relative;
  font-size: max(14px, 0.9rem);
  line-height: 1.4rem;
}
.pub-btn-long > * {
  position: relative;
}
.pub-btn-long > *::after {
  content: "";
  display: block;
  width: 5.75rem;
  height: 0.5rem;
  background: url("/img/common/long-right.svg") no-repeat left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

@media (min-width: 992px) {
  .pub-btn:hover {
    background: var(--mt-global-color-theme-h);
    border-color: var(--mt-global-color-theme-h);
    color: #fff;
  }
  .pub-btn-learn:hover .bi {
    transform: translateX(16px);
    -webkit-transform: translateX(16px);
  }
  .pub-btn-long:hover > *::after {
    animation: longRightAnt 0.5s ease-in-out;
  }
}
@media (max-width: 991.98px) {
  .pub-btn {
    min-width: 2.8rem;
    height: 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    --line-height: 0.42rem;
    --padding: 0 0.56rem;
  }
  .pub-btn .bi {
    width: 0.46rem;
    height: 0.46rem;
  }
  .pub-btn-learn {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .pub-btn-learn > * {
    grid-gap: 0 0.1rem;
  }
  .pub-btn-learn .bi {
    width: 0.6rem;
    height: 0.6rem;
  }
  .pub-btn-long {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .pub-btn-long > * {
    padding: 0 0 0.18rem;
  }
  .pub-btn-long > *::after {
    width: 1.7rem;
    height: 0.18rem;
    bottom: 0;
  }
}
/* 表单-form */
.form-group {
  font-size: 16px;
  line-height: 1.75em;
  color: #333;
  position: relative;
  margin: 0;
  --line-height: 1.75em;
}
.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 {
  display: flex;
  align-items: center;
}

.form-control {
  padding: 1rem;
  font-size: 1em;
  line-height: inherit;
  color: inherit;
  height: 3.5rem;
  width: 100%;
  display: block;
  box-shadow: none;
  outline: none;
  border: solid 1px #EEF1F5;
  border-radius: 10px;
  background: #EEF1F5;
  --background: #EEF1F5;
}
.form-control:focus {
  background-color: var(--background);
  box-shadow: none;
  outline: none;
  border-color: var(--mt-global-color-theme);
}
.form-control[readonly] {
  background-color: var(--background);
}
.form-control::placeholder {
  color: inherit;
}
.form-control::-webkit-placeholder {
  color: inherit;
}
.form-control::-moz-placeholder {
  color: inherit;
}

textarea.form-control {
  min-height: 8rem;
}

.form-btnbox {
  width: 100%;
  display: flex;
  margin: 2.5em 0 0;
}

.check-input {
  display: none;
}

.checklabel {
  cursor: pointer;
  position: relative;
  display: flex;
  grid-gap: 0 10px;
}

.check-icon {
  flex: none;
  height: var(--line-height);
  pointer-events: none;
  color: #000;
  display: flex;
  align-items: center;
}
.check-icon .bi {
  flex: none;
  width: 1em;
  height: 1em;
  display: block;
  background: no-repeat center center #fff;
  background-size: contain;
  border: solid 1px currentColor;
}
.check-icon .bi-radio {
  border-radius: 50%;
}
.check-icon .bi-checkbox {
  border-radius: 3px;
}

.check-text {
  pointer-events: none;
}
.check-text a[href] {
  color: var(--mt-global-color-theme);
  pointer-events: auto;
}

.checkitem {
  position: relative;
}
.checkitem.is-checked .check-icon .bi-checkbox {
  background-image: url("/img/static/check-white.svg");
  background-color: var(--mt-global-color-theme);
  border-color: var(--mt-global-color-theme);
}

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

.form-upload-box {
  display: flex;
  position: relative;
  align-items: center;
}
.form-upload-box input[type=file] {
  display: none;
}
.form-upload-box .upload-btnbox {
  flex: none;
  display: flex;
  align-items: center;
  height: 2.7rem;
  cursor: pointer;
  position: relative;
}
.form-upload-box .btn-upload {
  flex: none;
  width: 82px;
  height: 32px;
  display: flex;
  justify-content: 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 {
  flex: 1;
  display: none;
}
.form-upload-box .upload-list .item {
  display: flex;
  align-items: center;
  position: relative;
}
.form-upload-box .upload-list .item-title {
  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: flex;
  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;
}

.form-vcode-box {
  width: 100%;
  position: relative;
}
.form-vcode-box .form-control {
  padding-right: 7.7rem;
}
.form-vcode-box .vcode-imgs {
  width: 6.5rem;
  height: 2.3rem;
  display: block;
  overflow: hidden;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  z-index: 20;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}
.form-vcode-box .vcode-imgs img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.form-privacy {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.5em;
  --line-height: 1.5em;
}
.form-privacy.has-error .help-block {
  display: none !important;
}
.form-privacy.has-error .check-icon {
  color: var(--mt-global-color-red);
}

.form-group-grid {
  width: 100%;
  display: grid;
  grid-gap: 0.75rem;
}

@media (min-width: 992px) {
  .form-group-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .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-theme);
    color: #fff;
    border-color: var(--mt-global-color-theme);
  }
  .form-upload-box .upload-list .item-delete:hover {
    opacity: 1;
  }
  .check-text a[href]:hover {
    text-decoration: underline;
    color: var(--mt-global-color-theme-h);
  }
}
@media (max-width: 991.98px) {
  .form-group-grid {
    grid-gap: 0.2rem 0;
  }
  .form-group {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .control-label {
    line-height: 1em;
  }
  .form-control {
    height: 0.94rem;
    padding: 0.3rem;
    border-radius: 0.1rem;
  }
  textarea.form-control {
    min-height: 3rem;
  }
  select.form-control {
    background-size: 0.46rem;
    background-position: right 0.3rem center;
  }
  .form-btnbox {
    margin: 0.6rem 0 0;
  }
  .checklabel {
    grid-gap: 0 0.14rem;
  }
  .check-icon .bi {
    width: 0.4rem;
    height: 0.4rem;
  }
  .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;
  }
  .form-vcode-box .form-control {
    padding-right: 2.01rem;
  }
  .form-vcode-box .vcode-imgs {
    width: 1.65rem;
    height: 0.58rem;
    right: 0.18rem;
  }
  .form-privacy {
    margin: 0.3rem 0 0;
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
  }
}
.form-common .form-header {
  margin-bottom: 2rem;
}
.form-common .form-header .lvtit {
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  line-height: 1.25em;
  font-weight: bold;
  margin-bottom: 1rem;
}
.form-common .form-header .text {
  font-size: 1.1rem;
  line-height: 1.7rem;
}

@media (max-width: 991.98px) {
  .form-common .form-header {
    margin-bottom: 0.6rem;
  }
  .form-common .form-header .lvtit {
    font-size: 0.64rem;
    line-height: 0.8rem;
    margin-bottom: 0.3rem;
  }
  .form-common .form-header .text {
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
}
/******/
/* 国家选择样式 */
.country-select-container {
  width: 100%;
  position: relative;
}

.country-select-wrapper {
  position: relative;
}
.country-select-wrapper input {
  padding: 0 54px 0 calc(0.9rem + 28px);
}

.country-select-flag {
  width: 20px;
  height: 15px;
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  flex-shrink: 0;
}

.country-select-dropdown {
  position: absolute;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--mt-global-color-theme);
  border-radius: 10px;
  background: white;
  z-index: 1000;
  display: none;
  margin-top: 10px;
  padding: 5px 5px 5px 0;
}

.country-select-list {
  max-height: 300px;
  overflow: hidden;
  overflow-y: auto;
}
.country-select-list::-webkit-scrollbar {
  width: 5px;
}
.country-select-list::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.05);
}
.country-select-list::-webkit-scrollbar-thumb:vertical {
  width: 5px;
  background-color: var(--mt-global-color-theme);
  cursor: pointer;
}

.country-select-item {
  padding: 8px 10px 8px 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.country-select-item .flag {
  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.28rem;
    line-height: 0.42rem;
  }
  .country-select-wrapper input {
    padding-right: 0.9rem;
    padding-left: calc(0.18rem + 28px);
    background-position: right 0.32rem center;
    background-size: 0.26rem auto;
  }
  .country-select-flag {
    left: 0.18rem;
  }
  .country-select-item {
    padding-left: 0.18rem;
  }
}
/******/
/* 城市选择样式 */
.cityAreaSelect-group {
  margin: 0 -1em;
}

.cityAreaSelect-item {
  padding: 0 1em;
}

.cityAreaSelect-select {
  width: 100%;
  height: 48px;
  display: block;
  border: solid 1px #cdcccc;
  font-size: 16px;
  line-height: 1em;
  padding: 0 1.25em;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
}
.cityAreaSelect-select.isnull {
  color: #666666;
}

@media (min-width: 992px) {
  .cityAreaSelect-select {
    background: url("../../img/static/chevron-down-gray.svg") no-repeat right 1.25em center transparent;
    background-size: 1em auto;
    appearance: none;
  }
}
@media (max-width: 991.98px) {
  .cityAreaSelect-select {
    font-size: 0.28rem;
    padding: 0 0.3rem;
    height: 0.9rem;
  }
}
/* 自定义省市区 */
.cityAreaSelect-text {
  width: 100%;
  height: 48px;
  display: block;
  border: solid 1px #cdcccc;
  font-size: 16px;
  line-height: 46px;
  padding: 0 3.5em 0 1.25em;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  background-color: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cityAreaSelect-text::after {
  content: "";
  width: 3.5em;
  display: block;
  pointer-events: none;
  height: 100%;
  background: url("../../img/static/chevron-down-gray.svg") no-repeat center center #fff;
  background-size: 1em auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.cityAreaSelect-text.isnull {
  color: #666666;
}

.cityAreaSelect-custom-box {
  position: relative;
}
.cityAreaSelect-custom-box.is-open {
  z-index: 50;
}
.cityAreaSelect-custom-box.is-open .cityAreaSelect-text::after {
  background-image: url("../../img/static/chevron-up-gray.svg");
}

.cityAreaSelect-dropdown {
  min-width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
  border: solid 1px #cdcccc;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 20;
  white-space: nowrap;
  font-size: 16px;
  line-height: 3.125em;
  color: #666;
  padding: 0.625em 0.5em 0.625em 0;
  display: none;
}

.cityAreaSelect-list {
  width: 100%;
  max-height: 22em;
  overflow: hidden;
  overflow-y: auto;
}
.cityAreaSelect-list::-webkit-scrollbar {
  width: 4px;
}
.cityAreaSelect-list::-webkit-scrollbar-track {
  background: #ededed;
}
.cityAreaSelect-list::-webkit-scrollbar-thumb {
  background: #c9c9c9;
}
.cityAreaSelect-list li {
  cursor: pointer;
  padding: 0 2.5em;
}
.cityAreaSelect-list li.selected {
  background-color: #f8f8f8;
  color: #0861FF;
  font-weight: bold;
}

@media (min-width: 992px) {
  .cityAreaSelect-list li:hover {
    background-color: #f8f8f8;
    color: #0861FF;
    font-weight: bold;
  }
}
@media (max-width: 991.98px) {
  .cityAreaSelect-item {
    margin-bottom: 0.3rem;
  }
  .cityAreaSelect-item:last-child {
    margin-bottom: 0;
  }
  .cityAreaSelect-text {
    font-size: 0.28rem;
    padding: 0 0.9rem 0 0.3rem;
    height: calc(0.88rem + 2px);
    line-height: 0.88rem;
  }
  .cityAreaSelect-text::after {
    width: 0.9rem;
    background-size: 0.3rem auto;
  }
  .cityAreaSelect-dropdown {
    width: 100%;
    font-size: 0.28rem;
    line-height: 0.8rem;
    top: calc(100% + 0.1rem);
    padding: 0.08rem 0.1rem 0.13rem 0;
  }
  .cityAreaSelect-list {
    max-height: 5.6rem;
  }
  .cityAreaSelect-list li {
    padding: 0 0.4rem;
  }
}
/* 自定义省市区-合并显示 */
.cityAreaSelect-merge-box {
  position: relative;
}
.cityAreaSelect-merge-box .cityAreaSelect-dropdown {
  padding: 0;
}
.cityAreaSelect-merge-box.is-open {
  z-index: 50;
}
.cityAreaSelect-merge-box.is-open .cityAreaSelect-text::after {
  background-image: url("../../img/static/chevron-up-gray.svg");
}

.cityAreaSelect-input {
  display: none;
}

.cityAreaSelect-merge-flex {
  width: 100%;
  padding: 1.6em 1.875em 1.75em;
}

.cityAreaSelect-merge-head {
  width: 100%;
  border-bottom: solid 1px #d4d4d4;
}

.cityAreaSelect-merge-tablist {
  display: flex;
  white-space: nowrap;
}

.cityAreaSelect-merge-tabitem {
  display: none;
  height: 2.5em;
  align-items: center;
  justify-content: center;
  color: #0861FF;
  margin: 0 0.625em 0 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  cursor: pointer;
  padding: 0 1.25em;
  min-width: 5.625em;
}
.cityAreaSelect-merge-tabitem > * {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
  text-align: center;
}
.cityAreaSelect-merge-tabitem:last-child {
  margin: 0;
}
.cityAreaSelect-merge-tabitem.active {
  background-color: #0861FF;
  color: #fff;
}
.cityAreaSelect-merge-tabitem.show {
  display: flex;
}

.cityAreaSelect-merge-body > * {
  overflow: hidden;
  overflow-y: auto;
  margin: 0 -10px;
  padding: 0 10px;
}
.cityAreaSelect-merge-body > *::-webkit-scrollbar {
  width: 4px;
}
.cityAreaSelect-merge-body > *::-webkit-scrollbar-track-piece {
  width: 2px;
  margin: 0 auto;
  background-color: #EEE;
}
.cityAreaSelect-merge-body > *::-webkit-scrollbar-thumb:vertical {
  width: 4px;
  background-color: #DDD;
  -webkit-border-radius: 2px;
}
.cityAreaSelect-merge-body .cityAreaSelect-list {
  display: flex;
  flex-wrap: wrap;
  max-height: none;
  width: auto;
  margin: 0 -0.625em;
}
.cityAreaSelect-merge-body .cityAreaSelect-list li {
  flex: 0 0 25%;
  max-width: 25%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.625em;
  background-color: transparent !important;
}

.modal-cityAreaSelect {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.5);
}
.modal-cityAreaSelect .modal-dialog {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  transform: none;
  -webkit-transform: none;
  position: absolute;
  left: 0;
  bottom: 0;
}
.modal-cityAreaSelect .modal-content {
  width: 100%;
  display: block;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: 0px;
  border-top-left-radius: 0.24rem;
  border-top-right-radius: 0.24rem;
  border: none;
  transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
  transition: transform 0.3s ease-out;
  -webkit-transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transform-origin: center bottom !important;
}
.modal-cityAreaSelect .modal-head {
  width: 100%;
  height: 1.12rem;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  position: relative;
}
.modal-cityAreaSelect .modal-title {
  font-size: 0.32rem;
  line-height: 1em;
  color: #333333;
}
.modal-cityAreaSelect .modal-close {
  margin: 0;
  padding: 0 0.5rem;
  height: 100%;
  background: url("../../img/static/close-gray.svg") no-repeat center center;
  background-size: 0.28rem;
  position: absolute;
  right: 0;
  top: 0;
}
.modal-cityAreaSelect .modal-body {
  width: 100%;
  overflow: hidden;
  position: relative;
  font-size: 0.28rem;
  padding: 0;
}
.modal-cityAreaSelect.fade .modal-dialog {
  transform: none;
  -webkit-transform: none;
  transition: none;
  -webkit-transition: none;
}
.modal-cityAreaSelect.show {
  opacity: 1;
}
.modal-cityAreaSelect.show .modal-content {
  transform: none;
  -webkit-transform: none;
  transition-delay: 0.3s;
}

@media (max-width: 991.98px) {
  .cityAreaSelect-merge-flex {
    padding: 0 0.5rem;
  }
  .cityAreaSelect-merge-tabitem {
    height: 0.6rem;
    margin: 0;
    padding: 0 0.3rem;
    min-width: 1.55rem;
    max-width: 40%;
  }
  .cityAreaSelect-merge-head {
    margin-bottom: 0.2rem;
  }
  .cityAreaSelect-merge-body {
    padding: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 4.94rem;
  }
  .cityAreaSelect-merge-body .cityAreaSelect-list {
    width: 100%;
    display: block;
    margin: 0;
    font-size: 1em;
    line-height: 0.8rem;
  }
  .cityAreaSelect-merge-body .cityAreaSelect-list li {
    flex: none;
    max-width: none;
    padding: 0 0.55rem;
  }
}
/* 面包屑导航 */
.rocket-widget__crumb {
  width: 100%;
  position: absolute;
  left: 0;
  top: 1rem;
  z-index: 20;
  pointer-events: none;
}

.rocket-crumb-list {
  display: flex;
  align-items: center;
  position: relative;
  pointer-events: auto;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
  z-index: 25;
}
.rocket-crumb-list .icon-home {
  width: 14px;
  height: 14px;
  display: block;
  color: inherit;
  background-color: currentColor;
  mask: url("/img/common/home.svg") no-repeat center/contain;
}
.rocket-crumb-list > .navitem {
  position: relative;
  display: flex;
  align-items: center;
}
.rocket-crumb-list > .navitem > * {
  color: inherit;
  position: relative;
  display: block;
}
.rocket-crumb-list > .navitem:not(:last-child)::after {
  content: "/";
  display: block;
  flex: none;
  margin: 0 12px;
  color: #fff;
}
.rocket-crumb-list > .navitem:not(:last-child) > *::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: solid 1px currentColor;
  position: absolute;
  left: 0;
  top: 100%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.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);
}

.rocket-crumb-rel .rocket-widget__crumb {
  position: static;
}
.rocket-crumb-rel .rocket-crumb-list {
  height: 2.7rem;
  align-items: center;
}

body.head-nobg .rocket-widget__crumb {
  top: calc(var(--header-ht) + 1rem);
}
body.head-nobg .rocket-crumb-list > .navitem {
  color: #fff !important;
}

@media (min-width: 992px) {
  .rocket-crumb-list > .navitem:not(:last-child):hover {
    color: var(--mt-global-color-theme);
  }
  .rocket-crumb-list > .navitem:not(:last-child):hover > *::after {
    width: 100%;
  }
  .rocket-crumb-rel .rocket-crumb-list > .navitem:not(:last-child):hover {
    color: #fff;
  }
}
@media (max-width: 991.98px) {
  .rocket-widget__crumb {
    top: 0.4rem;
    display: none;
  }
  .rocket-widget__crumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 1.08rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.67) 100%);
    position: absolute;
    left: 0;
    top: -0.4rem;
    z-index: 1;
  }
  .rocket-crumb-black .rocket-widget__crumb {
    top: 0.4rem;
  }
  .rocket-crumb-black .rocket-widget__crumb::after {
    display: none;
  }
  .rocket-crumb-list {
    color: #fff;
    font-size: 0.28rem;
    line-height: 0.38rem;
    align-items: flex-start;
    padding: 0.05rem 0;
  }
  .rocket-crumb-list .icon-home {
    width: 12px;
    height: 12px;
  }
  .rocket-crumb-list > .navitem {
    min-height: 0.38rem;
  }
  .rocket-crumb-list > .navitem:not(:last-child)::after {
    margin: 0 0.1rem;
  }
}
/****** 
 * 组件 — 分栏
 *****/
.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 {
  min-width: 0;
  direction: initial;
}

@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: 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: flex;
  justify-content: center;
}

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

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

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

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

/****** 
 * 组件 — 标题 
 *****/
.rocket-title-xxxxl {
  font-size: clamp(3rem, 4.6296296296vw, 4rem);
  line-height: 1.2em;
  --line-height: 1.2em;
  color: inherit;
}

.rocket-title-xxxl {
  font-size: clamp(3rem, 4.6296296296vw, 4rem);
  line-height: 1.2em;
  --line-height: 1.2em;
  color: inherit;
}

.rocket-title-xxl {
  font-size: clamp(1.8rem, 3.2407407407vw, 2.8rem);
  line-height: 1.21em;
  --line-height: 1.21em;
  color: inherit;
}

.rocket-title-xl {
  font-size: clamp(1.4rem, 2.7777777778vw, 2.4rem);
  line-height: 1.25em;
  --line-height: 1.25em;
  color: inherit;
}

.rocket-title-lg {
  font-size: clamp(1.3rem, 2.0833333333vw, 1.8rem);
  line-height: 1.28em;
  --line-height: 1.28em;
  color: inherit;
}

.rocket-title-md {
  font-size: clamp(1.3rem, 1.6203703704vw, 1.4rem);
  line-height: 1.21em;
  --line-height: 1.21em;
  color: inherit;
}

.rocket-title-sm {
  font-size: clamp(1.1rem, 1.3888888889vw, 1.2rem);
  line-height: 1.17em;
  --line-height: 1.17em;
  color: inherit;
}

.rocket-title-xs {
  font-size: clamp(14px, 1rem, 20px);
  line-height: 1.3em;
  --line-height: 1.3em;
  color: inherit;
}

.rocket-title-xxs {
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.33em;
  --line-height: 1.33em;
  color: inherit;
}

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

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

[class*=s-heading-] {
  font-weight: bold;
}

@media (max-width: 991.98px) {
  .rocket-title-xxxxl {
    font-size: 0.72rem;
    line-height: 0.8rem;
    --line-height: 0.8rem;
    color: inherit;
  }
  .rocket-title-xxxl {
    font-size: 0.64rem;
    line-height: 0.8rem;
    --line-height: 0.8rem;
    color: inherit;
  }
  .rocket-title-xxl {
    font-size: 0.52rem;
    line-height: 0.64rem;
    --line-height: 0.64rem;
    color: inherit;
  }
  .rocket-title-xl {
    font-size: 0.52rem;
    line-height: 0.64rem;
    --line-height: 0.64rem;
    color: inherit;
  }
  .rocket-title-lg {
    font-size: 0.48rem;
    line-height: 0.6rem;
    --line-height: 0.6rem;
    color: inherit;
  }
  .rocket-title-md {
    font-size: 0.36rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    color: inherit;
  }
  .rocket-title-sm {
    font-size: 0.36rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    color: inherit;
  }
  .rocket-title-xs {
    font-size: 0.3rem;
    line-height: 0.4rem;
    --line-height: 0.4rem;
    color: inherit;
  }
  .rocket-title-xxs {
    font-size: 0.3rem;
    line-height: 0.4rem;
    --line-height: 0.4rem;
    color: inherit;
  }
}
/****** 
 * 组件 — 文本
 *****/
.rocket-text-xxl {
  font-size: clamp(1.1rem, 1.3888888889vw, 1.2rem);
  line-height: 1.5em;
  --line-height: 1.5em;
  color: inherit;
}

.rocket-text-xl {
  font-size: clamp(14px, 1.1rem, 22px);
  line-height: 1.55em;
  --line-height: 1.55em;
  color: inherit;
}

.rocket-text-lg {
  font-size: clamp(14px, 1rem, 20px);
  line-height: 1.5em;
  --line-height: 1.5em;
  color: inherit;
}

.rocket-text-md {
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.56em;
  --line-height: 1.56em;
  color: inherit;
}

.rocket-text-sm {
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.75em;
  --line-height: 1.75em;
  color: inherit;
}

.rocket-text-detail {
  font-size: clamp(14px, 0.9rem, 18px);
  line-height: 1.78em;
  --line-height: 1.78em;
  color: inherit;
}

.rocket-text-notice {
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.5em;
  --line-height: 1.5em;
  color: inherit;
}

.rocket-text-tips {
  font-size: 14px;
  line-height: 20px;
  --line-height: if(unitless($lineHeight), 20px, $lineHeight);
  color: inherit;
}

.rocket-widget__text {
  position: relative;
}

.rocket-weixin-text {
  max-width: 677px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6em;
  word-break: break-word;
}
.rocket-weixin-text img {
  max-width: 100%;
}

.rocket-block-text,
.rocket-classical-text {
  color: #333;
  position: relative;
  overflow: hidden;
}
.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;
}
.rocket-block-text h3,
.rocket-classical-text h3 {
  font-size: 1.4rem;
  line-height: 1.7rem;
}
.rocket-block-text h4,
.rocket-classical-text h4 {
  font-size: 1.2rem;
  line-height: 1.4rem;
}
.rocket-block-text h5,
.rocket-classical-text h5 {
  font-size: 1rem;
  line-height: 1.3rem;
}
.rocket-block-text h6,
.rocket-classical-text h6 {
  font-size: 0.9rem;
  line-height: 1.2rem;
}
.rocket-block-text ul > li,
.rocket-classical-text ul > li {
  position: relative;
  padding-left: 1.5em;
}
.rocket-block-text ul > li::before,
.rocket-classical-text ul > li::before {
  content: "·";
  font-size: 2em;
  line-height: inherit;
  position: absolute;
  left: 0.15em;
  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.57em;
}
.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: 1em;
  line-height: inherit;
  border: none;
}
.rocket-block-text table th, .rocket-block-text table td,
.rocket-classical-text table th,
.rocket-classical-text table td {
  width: 25.36%;
  border: none;
  background: transparent;
}
.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;
}
.rocket-block-text table th,
.rocket-classical-text table th {
  font-size: 1rem;
  line-height: 1em;
  color: var(--mt-global-color-theme);
  padding: 0 1rem 1rem 0;
  border-bottom: solid 1px var(--mt-global-color-theme);
  font-weight: bold;
  vertical-align: top;
}
.rocket-block-text table td,
.rocket-classical-text table td {
  height: 2.5rem;
  vertical-align: middle;
  font-size: 1em;
  line-height: inherit;
  border-bottom: solid 1px #C2CDD6;
  padding: 0.5rem 1rem 0.5rem 0;
}
.rocket-block-text .table,
.rocket-classical-text .table {
  color: inherit;
}

.rocket-text-detail,
.rocket-classical-text {
  font-size: 0.9rem;
  line-height: 1.6rem;
}
.rocket-text-detail a[href],
.rocket-classical-text a[href] {
  color: var(--mt-global-color-theme);
}
.rocket-text-detail > *,
.rocket-classical-text > * {
  margin-bottom: 1rem;
}
.rocket-text-detail > *:last-child,
.rocket-classical-text > *:last-child {
  margin-bottom: 0;
}
.rocket-text-detail h2, .rocket-text-detail h3, .rocket-text-detail h4, .rocket-text-detail h5, .rocket-text-detail h6,
.rocket-classical-text h2,
.rocket-classical-text h3,
.rocket-classical-text h4,
.rocket-classical-text h5,
.rocket-classical-text h6 {
  margin: 1.5rem 0 0.5rem;
}
.rocket-text-detail img,
.rocket-classical-text img {
  max-width: 100%;
  margin: 0 auto;
}
.rocket-text-detail > img, .rocket-text-detail .rocket-widget__image,
.rocket-classical-text > img,
.rocket-classical-text .rocket-widget__image {
  margin: 0.5rem auto;
}

@media (max-width: 991.98px) {
  .rocket-text-xxl {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    color: inherit;
  }
  .rocket-text-xl {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    color: inherit;
  }
  .rocket-text-lg {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    color: inherit;
  }
  .rocket-text-md {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    color: inherit;
  }
  .rocket-text-sm {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    color: inherit;
  }
  .rocket-text-detail {
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
    color: inherit;
  }
  .rocket-text-notice {
    font-size: 0.28rem;
    line-height: 0.42rem;
    --line-height: 0.42rem;
    color: inherit;
  }
  .rocket-text-tips {
    font-size: 0.24rem;
    line-height: 0.36rem;
    --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;
  }
  .rocket-block-text h3,
  .rocket-classical-text h3 {
    font-size: 0.36rem;
    line-height: 0.46rem;
  }
  .rocket-block-text h4,
  .rocket-classical-text h4 {
    font-size: 0.36rem;
    line-height: 0.46rem;
  }
  .rocket-block-text h5,
  .rocket-classical-text h5 {
    font-size: 0.3rem;
    line-height: 0.4rem;
  }
  .rocket-block-text h6,
  .rocket-classical-text h6 {
    font-size: 0.3rem;
    line-height: 0.4rem;
  }
  .rocket-block-text table,
  .rocket-classical-text table {
    width: auto;
    min-width: 100%;
  }
  .rocket-block-text table th,
  .rocket-classical-text table th {
    font-size: 0.3rem;
    line-height: 0.48rem;
    padding: 0 0.3rem 0.2rem 0;
  }
  .rocket-block-text table td,
  .rocket-classical-text table td {
    height: 1rem;
    padding: 0.2rem 0.3rem 0.2rem 0;
  }
  .rocket-text-detail,
  .rocket-classical-text {
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  .rocket-text-detail > *,
  .rocket-classical-text > * {
    margin-bottom: 0.3rem;
  }
  .rocket-text-detail > *:last-child,
  .rocket-classical-text > *:last-child {
    margin-bottom: 0;
  }
  .rocket-text-detail h2, .rocket-text-detail h3, .rocket-text-detail h4, .rocket-text-detail h5, .rocket-text-detail h6,
  .rocket-classical-text h2,
  .rocket-classical-text h3,
  .rocket-classical-text h4,
  .rocket-classical-text h5,
  .rocket-classical-text h6 {
    margin: 0.3rem 0 0.2rem;
  }
  .rocket-text-detail img,
  .rocket-classical-text img {
    margin: 0 auto;
  }
  .rocket-text-detail > img, .rocket-text-detail .rocket-widget__image,
  .rocket-classical-text > img,
  .rocket-classical-text .rocket-widget__image {
    margin: 0.2rem auto;
  }
  .rocket-text-table {
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    position: relative;
  }
  .rocket-text-table::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .rocket-text-table::-webkit-scrollbar-track {
    background: rgba(84, 95, 108, 0.2);
    border-radius: 3px;
  }
  .rocket-text-table::-webkit-scrollbar-thumb {
    background: var(--mt-global-color-theme);
    border-radius: 3px;
  }
}
/****** 
 * 组件 — 图片
 *****/
.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%;
  text-align: center;
  display: flex;
  align-items: 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 {
  width: 100%;
  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;
  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: 5.9rem;
  height: 5.9rem;
  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;
  pointer-events: auto;
}
.rocket-video-btn_play .bi {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border: none;
  z-index: 50;
  background: url(/img/static/video-play-big.svg) no-repeat center center;
  background-size: contain;
}

.rocket-video__option {
  text-align: center;
  display: flex;
  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: flex;
}

.rocket-audio {
  display: none;
}

.rocket-audio-icon {
  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: flex;
  align-items: 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: 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: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  transition: none;
  -webkit-transition: none;
  color: inherit !important;
}
.rocket-button .bi {
  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: flex;
  align-items: stretch;
}

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

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

.rocket-icon {
  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%;
  flex: 1;
  background: no-repeat center center;
  background-size: cover;
  border: none;
  border-width: 0px;
  display: flex;
  flex-direction: column;
}

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

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

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

.rocket-widget__icon-noico .rocket-icon-image {
  display: 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: flex;
}
.rocket-icon-item .item-box {
  display: flex;
  position: relative;
  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;
  justify-content: center;
}

.rocket-keyword-item_data {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1em;
  white-space: nowrap;
}
.rocket-keyword-item_data .data-icon {
  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: flex;
  align-items: flex-end;
}
.rocket-keyword-item_data .data-text .num, .rocket-keyword-item_data .data-text .suffix {
  font-family: "Montserrat", Arial, Helvetica, -apple-system, BlinkMacSystemFont, sans-serif;
}
.rocket-keyword-item_data .data-text .unit {
  font-size: 53.3%;
  line-height: 1em;
  font-weight: 500;
  margin: 0 0 0.3em 0.16em;
}

.rocket-keyword-item_title {
  font-size: 1.1rem;
  line-height: 1em;
  margin: 1.27em 0 0;
  display: flex;
  align-items: 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_data .data-text .unit {
    font-size: 0.4rem;
    margin: 0 0 0.12rem 0.1rem;
  }
  .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: flex;
  align-items: 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;
  align-items: flex-start;
}

.rocket-widget__collapse {
  position: relative;
}

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

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

.rocket-collapse-handle {
  flex: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  padding: 0 28px;
}
.rocket-collapse-handle .bi {
  flex: none;
  width: 20px;
  height: 20px;
  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: 3px;
  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: 3px;
  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;
  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;
  mask: url("/img/common/collapse-down.svg") no-repeat center;
}

.rocket-collapse-body {
  width: 100%;
  position: relative;
  display: none;
}

.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 {
    align-items: flex-start;
  }
  .rocket-collapse-handle {
    padding: 0 0 0 0.2rem;
  }
  .rocket-collapse-handle .bi {
    width: 0.44rem;
    height: 0.44rem;
  }
}
/****** 
 * 组件 — 卡片容器
 *****/
.rocket-widget__card {
  width: 100%;
  display: grid;
  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-theme);
  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;
  z-index: 5;
}

.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: flex;
}

.rocket-banner-tbox {
  max-width: 100%;
  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;
  margin: 0 auto;
}

.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: 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 {
  flex: none;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 50%;
  z-index: 20;
  cursor: pointer;
  background: #F5F5F5;
  border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border: 1px solid #F5F5F5;
}
.rocket-swiper-control .bi {
  width: 100%;
  height: 100%;
  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: var(--mt-global-color-theme);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.rocket-swiper-control.swiper-button-disabled {
  opacity: 0;
  pointer-events: none !important;
}

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

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

.rocket-swiper-control-box {
  display: flex;
  align-items: center;
  position: relative;
  margin: 1.5rem 0 0;
  grid-gap: 0 1rem;
  pointer-events: none;
}
.rocket-swiper-control-box .rocket-swiper-control {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  transform: none;
  -webkit-transform: none;
  pointer-events: auto;
}
.rocket-swiper-control-box .rocket-swiper-control.swiper-button-disabled {
  opacity: 0.5;
}

.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: flex;
  justify-content: center;
  position: relative;
  margin: 2.5rem 0 0;
  grid-gap: 0 8px;
  z-index: 20;
}
.rocket-swiper-paging .bullet {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: solid 1px var(--mt-global-color-black);
  position: relative;
  cursor: pointer;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.rocket-swiper-paging .active {
  opacity: 1;
  background: var(--mt-global-color-theme);
  border-color: var(--mt-global-color-theme);
}

.rocket-swiper-position .rocket-swiper-wrapper {
  padding: 0;
}
.rocket-swiper-position .rocket-swiper-control-box {
  margin: 0;
  justify-content: space-between;
  position: absolute;
  left: -4.5rem;
  right: -4.5rem;
  top: 0;
  bottom: 0;
  z-index: 20;
}
.rocket-swiper-position .rocket-swiper-paging {
  position: absolute;
  left: 0;
  bottom: 5rem;
  z-index: 20;
}
.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-theme);
}

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

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

.rocket-swiper-handle {
  display: flex;
  align-items: center;
}
.rocket-swiper-handle .rocket-swiper-paging {
  margin: 0;
  flex: 1;
  grid-gap: 0 0;
}
.rocket-swiper-handle .rocket-swiper-paging .bullet {
  width: auto;
  flex: 1;
  margin: 0;
}

.rocket-swiper-pagenum {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex: none;
  color: rgba(51, 51, 51, 0.5);
}

@media (min-width: 992px) {
  .rocket-swiper-control:hover {
    background-color: var(--mt-global-color-theme);
    border: 1px solid var(--mt-global-color-theme);
  }
  .rocket-swiper-control:hover .bi {
    background-color: #fff;
  }
  .rocket-swiper-paging .bullet:hover:not(.active) {
    background-color: var(--mt-global-color-black);
  }
  .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.42rem;
    height: 0.42rem;
    display: none;
  }
  .rocket-swiper-control-box {
    margin: 0.6rem 0 0;
    grid-gap: 0 0.2rem;
    justify-content: center;
  }
  .rocket-swiper-control-box .rocket-swiper-control.swiper-button-disabled {
    opacity: 0.3;
  }
  .rocket-swiper-paging {
    margin: 0.8rem 0 0;
    grid-gap: 0 0.2rem;
  }
  .rocket-swiper-paging .bullet {
    width: 8px;
    height: 8px;
    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-swiper-handle {
    margin: 0.4rem 0 0;
    grid-gap: 0 0.2rem;
  }
  .rocket-swiper-pagenum {
    font-size: 0.32rem;
    line-height: 0.4rem;
  }
}
/****** 
 * 组件 — 选项卡
 *****/
.rocket-widget__tabPanel {
  position: relative;
  margin: 0 auto;
}

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

.rocket-tabPanel-tabbox {
  width: 100%;
  position: relative;
  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: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: inherit;
  cursor: pointer;
}
.rocket-tabPanel-tab .icon {
  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%;
  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 {
    flex-direction: column;
  }
  .rocket-tabpanel-h .rocket-tabPanel-tab .swiper-slide {
    flex: none;
    width: 100%;
  }
  .rocket-tabPanel-inflex .rocket-tabPanel-tabbox {
    display: inline-flex;
  }
}
@media (max-width: 991.98px) {
  .rocket-layout-tabPanel {
    width: calc(100% + 0.8rem);
    margin: 0 -0.4rem;
    padding: 0 0.4rem;
    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-theme);
    height: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    font-size: 0.32rem;
    line-height: 1em;
  }
  .rocket-tabsel-head .bi {
    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-theme);
    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-anchor-div {
  width: 100%;
  height: 5px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: -5rem;
  z-index: -99;
}

.rocket-widget__anchor {
  width: 100%;
  position: sticky;
  top: 0;
  margin: 0 auto;
  z-index: 1;
}
.rocket-widget__anchor.is-fixed {
  position: fixed !important;
  left: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  z-index: 50;
}

.rocket-block-anchor {
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: stretch;
}

.rocket-anchor-nav {
  max-width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.rocket-anchor-nav .swiper-slide {
  width: auto;
}
.rocket-anchor-nav .trigger {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}
.rocket-anchor-nav .trigger::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background-color: transparent;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  pointer-events: 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);
}
.rocket-anchor-nav .item-icon {
  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::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;
  }
}
@media (max-width: 991.98px) {
  .rocket-anchor-div {
    top: -1rem;
  }
  .rocket-widget__anchor {
    overflow: hidden;
  }
  .rocket-widget__anchor::before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 100%;
    background: linear-gradient(270deg, rgba(246, 248, 250, 0) 0%, rgb(246, 248, 250) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
  }
  .rocket-widget__anchor::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 100%;
    background: linear-gradient(90deg, rgba(246, 248, 250, 0) 0%, rgb(246, 248, 250) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
  }
  .rocket-widget__anchor.is-end::after {
    display: none;
  }
  .rocket-widget__anchor.is-beginning::before {
    display: none;
  }
  .rocket-anchor-nav {
    overflow: visible;
  }
  .rocket-anchor-nav .trigger {
    font-weight: inherit;
  }
  .rocket-anchor-nav .current .trigger {
    font-weight: bold;
  }
}
/****** 
 * 组件 — 间隔线
 *****/
.rocket-widget__hr {
  position: relative;
  background: no-repeat center center;
  background-size: cover;
  margin: 0 auto;
}

/****** 
 * 样式 — justify
 *****/
/* 居中 */
.justify-center .rocket-icon-item .item-box {
  justify-content: center;
}
.justify-center .rocket-icon-body {
  width: auto;
  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_bssban {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.custom-bssban-block {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.custom-bssban-media {
  width: 100%;
  position: relative;
  z-index: 1;
}
.custom-bssban-media .imgs {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.custom-bssban-media .imgs.web {
  height: min(39.0625vw, 750px);
}
.custom-bssban-media .imgs.app {
  height: 8rem;
}
.custom-bssban-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  animation: insideBanAntd 3s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.custom-bssban-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #fff;
  padding: 0 0 min(9.6vw, 9.25rem) 0;
}
.custom-bssban-text > *:not(.animated) > * {
  opacity: 0;
}
.custom-bssban-text > *.animated > *:nth-child(1) {
  transition-delay: 0.1s;
}
.custom-bssban-text > *.animated > *:nth-child(2) {
  transition-delay: 0.2s;
}

@media (max-width: 991.98px) {
  .custom-bssban-text {
    padding: 0 0 2.06rem 0;
  }
}
/* 针对后台 */
.layout-element .custom-bssban-text > *:not(.animated) > * {
  opacity: 1;
}

/****** 
 * 特殊组件：核心业务-产业投资
 *****/
.custom-widget_industry {
  width: 100%;
  position: relative;
}

.custom-industry-block {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.custom-industry-swiper {
  width: 100%;
  height: min(49.48vw, 950px);
  overflow: hidden;
  position: relative;
}
.custom-industry-swiper .slide-imgs {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.custom-industry-swiper .slide-imgs .imgs {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-industry-swiper .slide-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-industry-swiper .slide-body {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0 0 1.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.custom-industry-swiper .slide-title {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.2407407407vw, 2.8rem);
  line-height: 1.21em;
  --line-height: 1.21em;
}
.custom-industry-swiper .slide-desc {
  max-width: 25em;
  font-size: 1rem;
  line-height: 1.5rem;
}
.custom-industry-swiper .slide-desc p {
  margin-bottom: 1em;
}
.custom-industry-swiper .slide-desc p:last-child {
  margin-bottom: 0;
}

.custom-industry-paging {
  position: absolute;
  left: 0;
  bottom: 0.6rem;
  z-index: 20;
}
.custom-industry-paging .bullet:not(.active) {
  background: #fff;
}

.custom-industry-tabbox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.custom-industry-tabbox > * {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.custom-industry-tabs {
  pointer-events: auto;
  width: 16.9rem;
  position: relative;
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: #fff;
}
.custom-industry-tabs .item {
  position: relative;
  padding: 1.25rem 0 1.1rem;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.custom-industry-tabs .item::before {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1px solid #D9D9D9;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  z-index: 0;
}
.custom-industry-tabs .item::after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 5px solid #21A714;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 1;
}
.custom-industry-tabs .item.active {
  font-weight: bold;
}
.custom-industry-tabs .item.active::after {
  width: 100%;
}

@media (min-width: 992px) {
  .custom-industry-swiper {
    background: #000;
  }
  .custom-industry-swiper .slide-tbox {
    width: calc(100% - 16.9rem - 2rem);
  }
}
@media (max-width: 991.98px) {
  .custom-industry-swiper {
    height: 11.36rem;
  }
  .custom-industry-swiper .slide-body {
    padding: 1.2rem 0;
    align-items: flex-start;
  }
  .custom-industry-swiper .slide-title {
    font-size: 0.48rem;
    line-height: 0.6rem;
    --line-height: 0.6rem;
    margin-bottom: 0.3rem;
  }
  .custom-industry-swiper .slide-desc {
    max-width: none;
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
}
/****** 
 * 特殊组件：核心业务-房地产开发
 *****/
.custom-widget_realty {
  width: 100%;
  position: relative;
  background: url("/img/common/bss-fdc-bg.webp") no-repeat center center;
  background-size: cover;
  padding: 3rem 0;
}

.custom-realty-grid {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.custom-realty-grid > * {
  min-width: 0;
}

.custom-realty-item {
  position: relative;
}
.custom-realty-item .item-box {
  width: 100%;
  height: 18rem;
  display: block;
  position: relative;
  overflow: hidden;
}
.custom-realty-item .item-imgs {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
}
.custom-realty-item .item-imgs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.custom-realty-item .item-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  grid-gap: 2.75rem 0;
  padding: calc(3.5rem + 9px) 8px 3.8rem calc(1.5rem + 4px);
  position: relative;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  z-index: 5;
}
.custom-realty-item .item-body::before {
  content: "";
  display: block;
  width: 0;
  border-left: solid 4px;
  position: absolute;
  left: 0;
  top: 3.5rem;
  bottom: 3.8rem;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
}
.custom-realty-item .item-ico {
  flex: none;
}
.custom-realty-item .item-ico img {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  object-fit: contain;
  object-position: center;
  position: relative;
}
.custom-realty-item .item-text {
  color: #fff;
  font-weight: bold;
}
.custom-realty-item .item-text.web {
  font-size: 1.4rem;
  line-height: 1.7rem;
}
.custom-realty-item .item-text.app {
  font-size: 0.36rem;
  line-height: 0.46rem;
}
.custom-realty-item:nth-child(4n+1) .item-body::before {
  border-left-color: #fff;
}
.custom-realty-item:nth-child(4n+2) .item-body::before {
  border-left-color: #18B5A3;
}
.custom-realty-item:nth-child(4n+3) .item-body::before {
  border-left-color: #68BE40;
}
.custom-realty-item:nth-child(4n+4) .item-body::before {
  border-left-color: #D8B131;
}

@media (min-width: 992px) {
  .custom-realty-item:hover .item-body {
    padding: 2rem 8px 0.8rem calc(1.5rem + 4px);
    grid-gap: 7.6rem 0;
  }
  .custom-realty-item:hover .item-body::before {
    top: 0;
    bottom: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
  }
  .custom-realty-item:hover .item-imgs {
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  .custom-widget_realty {
    padding: 1rem 0;
    background-image: url("/img/common/bss-fdc-bg_m.webp");
  }
  .custom-realty-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.4rem 0;
  }
  .custom-realty-item .item-box {
    height: auto;
  }
  .custom-realty-item .item-body {
    grid-gap: 0.34rem 0;
    padding: 0 0 0 calc(0.42rem + 3px);
  }
  .custom-realty-item .item-body::before {
    top: 0;
    bottom: 0;
    border-left-width: 3px;
  }
  .custom-realty-item .item-ico img {
    width: 0.8rem;
    height: 0.8rem;
  }
}
/****** 
 * 特殊组件：加入我们-员工语录
 *****/
@keyframes quoteAntIn {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes quoteAntOut {
  0% {
    transform: none;
    opacity: 1;
  }
  100% {
    transform: translateX(-50%);
    opacity: 0;
  }
}
.custom-widget_quote {
  width: 100%;
  position: relative;
}

.custom-quote-block {
  width: 100%;
  background: #F2F3F3;
  border-radius: 1rem;
  position: relative;
  padding: 0 2rem;
}

.custom-quote-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.custom-quote-swiper .swiper-slide {
  padding: 6.9rem 0 8rem;
}
.custom-quote-swiper .slide-box {
  width: 100%;
  max-width: 20em;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 1rem 0;
  margin: 0 auto;
  opacity: 0;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  font-size: clamp(1rem, 2vw, 1.8rem);
  line-height: 1.28em;
  position: relative;
}
.custom-quote-swiper .slide-box::before {
  content: "";
  display: block;
  width: 2.1rem;
  height: 1.6rem;
  background: url("/img/common/quote.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: -1.4rem;
  top: -0.9rem;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}
.custom-quote-swiper .slide-box::after {
  content: "";
  display: block;
  width: 2.1rem;
  height: 1.6rem;
  background: url("/img/common/quote-right.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  right: -5px;
  bottom: -0.75rem;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
.custom-quote-swiper .slide-text {
  font-weight: bold;
}
.custom-quote-swiper .slide-text.web {
  font-size: clamp(1rem, 2vw, 1.8rem);
  line-height: 1.28em;
}
.custom-quote-swiper .slide-text.app {
  font-size: 0.36rem;
  line-height: 0.46rem;
}
.custom-quote-swiper .slide-name {
  font-size: max(14px, 0.9rem);
  line-height: 1.33em;
  opacity: 0.6;
}
.custom-quote-swiper .swiper-slide-active .slide-box {
  animation: quoteAntIn 0.4s ease-out forwards;
}
.custom-quote-swiper .swiper-slide-prev .slide-box {
  animation: quoteAntOut 0.4s ease-in forwards;
}

.custom-quote-paging {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 2.8rem;
}

@media (max-width: 991.98px) {
  .custom-quote-block {
    border-radius: 0.32rem;
    padding: 0;
  }
  .custom-quote-block::before {
    width: 0.65rem;
    height: 0.48rem;
    top: 0.8rem;
  }
  .custom-quote-swiper .swiper-slide {
    padding: 0.93rem 0.72rem 1.23rem;
  }
  .custom-quote-swiper .slide-box {
    max-width: none;
    grid-gap: 0.3rem 0;
    font-size: 0.36rem;
    line-height: 0.46rem;
  }
  .custom-quote-swiper .slide-box::before {
    width: 0.3rem;
    height: 0.24rem;
    left: -0.2rem;
    top: 0;
  }
  .custom-quote-swiper .slide-box::after {
    width: 0.3rem;
    height: 0.24rem;
    right: -0.2rem;
    bottom: 0;
  }
  .custom-quote-swiper .slide-name {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .custom-quote-paging {
    bottom: 0.6rem;
  }
}
/****** 
 * 特殊组件：加入我们-照片墙
 *****/
.custom-widget_photowall {
  width: 100%;
  position: relative;
}

.custom-photowall-block {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
}

.custom-photowall-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.custom-photowall-list .photo-item {
  width: 25%;
  height: 13.5rem;
  filter: grayscale(1);
  transition: all 0.36s;
  -webkit-transition: all 0.36s;
  opacity: 0.5;
  position: relative;
}
.custom-photowall-list .photo-item:nth-child(5), .custom-photowall-list .photo-item:nth-child(6), .custom-photowall-list .photo-item:nth-child(8), .custom-photowall-list .photo-item:nth-child(9) {
  width: 13.5%;
  height: 20.5rem;
}
.custom-photowall-list .photo-item.null {
  width: 46%;
  height: 20.5rem;
}
.custom-photowall-list .photo-item.act {
  opacity: 1;
  filter: grayscale(0);
}
.custom-photowall-list img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.custom-photowall-text {
  width: 46%;
  height: 20.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #365D39;
  color: #fff;
  padding: 2rem;
  position: absolute;
  left: 27%;
  top: 13.5rem;
}
.custom-photowall-text .p-title {
  font-size: clamp(1.4rem, 2.78vw, 2.4rem);
  line-height: 1.25em;
  font-weight: bold;
  color: var(--mt-global-color-yellow);
  margin-bottom: 1rem;
}
.custom-photowall-text .p-text {
  font-size: clamp(14px, 1.27vw, 1.1rem);
  line-height: 1.55em;
}

.custom-photowall-appimg {
  width: 100%;
  position: relative;
}
.custom-photowall-appimg img {
  width: 100%;
  display: block;
}

@media (max-width: 991.98px) {
  .custom-photowall-text {
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0.8rem 0.5rem;
    left: 0;
    top: 0;
  }
  .custom-photowall-text .p-title {
    font-size: 0.48rem;
    line-height: 0.6rem;
    margin-bottom: 0.38rem;
  }
  .custom-photowall-text .p-text {
    max-width: 4.95rem;
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
}