@charset "UTF-8";
/*******/
/* 自定义下拉框 */
.byted-select-wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
}

.byted-select-wrapper.is-open {
  z-index: 50;
}

.byted-select-wrapper.is-open .byted-select-arrow .bi {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

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

.byted-select-input {
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  font-size: 0.8rem;
  line-height: 1em;
  color: #0052b7;
  width: 100%;
  height: -webkit-calc(2.4rem + 2px);
  height: calc(2.4rem + 2px);
  -webkit-align-items: center;
          align-items: center;
  border-radius: 2.5rem;
  padding: 0 3rem 0 1.5rem;
  font-weight: bold;
  border: solid 1px #0052b7;
}

.byted-select-arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 20;
  color: #5189ce;
}

.byted-select-arrow .bi {
  width: 12px;
  height: 12px;
  display: block;
}

.byted-popover-wrapper {
  min-width: 100%;
  display: none;
  position: absolute;
  left: 0;
  top: -webkit-calc(100% + 0.6rem);
  top: calc(100% + 0.6rem);
  background: #fff;
  border: solid 1px #0052b7;
  border-radius: 10px;
  z-index: 20;
  padding: 0.5rem;
}

.byted-option-list {
  font-size: 0.8rem;
  line-height: 1.5em;
  color: #363636;
  white-space: nowrap;
  overflow: hidden;
  overflow-y: auto;
  max-height: -webkit-calc(12em + 3rem);
  max-height: calc(12em + 3rem);
}

.byted-option-list::-webkit-scrollbar {
  width: 2px;
}

.byted-option-list::-webkit-scrollbar-track {
  background: none;
}

.byted-option-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
}

.byted-option-list li {
  padding: 0.3rem 0;
  cursor: pointer;
}

.byted-option-list li.current, .byted-option-list li.active {
  font-weight: bold;
  color: #0052b7;
}

.byted-option-list a {
  display: block;
  padding: 0 1rem;
}

@media screen and (min-width: 992px) {
  .byted-select:hover .form-control {
    border-color: #fe2c55;
  }
  .byted-option-list li:hover, .byted-checkbox-list li:hover {
    color: #0052b7;
  }
}
@media screen and (max-width: 991.98px) {
  .byted-select-arrow {
    right: 0.28rem;
  }
  .byted-select-arrow .bi {
    width: 0.3rem;
    height: 0.3rem;
  }
  .byted-select-clear {
    right: 0.28rem;
  }
  .byted-select-clear .bi {
    width: 0.3rem;
    height: 0.3rem;
  }
  .byted-popover-wrapper {
    border-radius: 0.32rem;
    top: -webkit-calc(100% + 0.24rem);
    top: calc(100% + 0.24rem);
    padding: 0.1rem;
  }
  .byted-option-list {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .byted-option-list li {
    padding: 0.1rem 0;
  }
  .byted-option-list a {
    padding: 0 0.3rem;
  }
  .byted-checkbox-list {
    font-size: 0.24rem;
    line-height: 0.3rem;
  }
  .byted-checkbox-label {
    padding: 0.28rem 0.28rem 0.28rem 0.3rem;
  }
  .byted-check-ico {
    width: 0.3rem;
    height: 0.3rem;
    margin: 0 0 0 0.16rem;
  }
  .byted-checkbox-select-wrapper .byted-popover-wrapper {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}
/****
 * 其他
*****/
/* 动态组件-示例 */
/* 自定义样式-新闻列表 */
.news-wrap {
  padding: 5.5rem 0 6rem;
}

.search-keywords .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.search-keywords .search-input {
  width: 27.55rem;
  position: relative;
}
.search-keywords .close-search {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #333;
}
.search-keywords .icon-search {
  -webkit-mask: url(/img/images1/news-search.svg) no-repeat center/contain;
  mask: url(/img/images1/news-search.svg) no-repeat center/contain;
  background-color: currentColor;
  width: 0.8rem;
  height: 0.85rem;
}
.search-keywords input {
  height: 2.5rem;
  border-radius: 1.5rem;
  background: #F0F0F0;
  width: 100%;
  font-size: clamp(14px, 0.7rem, 14px);
  line-height: 22px;
  padding: 0 0.85rem 0 0.85rem;
  color: #666;
}
.search-keywords input::-webkit-input-placeholder {
  color: #999;
}
.search-keywords input::placeholder {
  color: #999;
}

.news-content {
  padding: 3.4rem 0 0 0;
}
.news-content .news-hot {
  max-width: 896px;
  margin: 0 auto 4.75rem;
  display: block;
}
.news-content .news-hot .desc {
  font-size: clamp(14px, 1rem, 20px);
  line-height: 1.65rem;
  margin-top: 2rem;
  text-align: center;
  color: #000;
}
.news-content .news-hot img {
  width: 100%;
  aspect-ratio: 896/504;
  display: block;
  border-radius: 6px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem 2rem;
  min-height: 10rem;
}
.news-list > * {
  min-width: 0;
}
.news-list .item-body {
  padding: 1.2rem 0.6rem 1.2rem;
  background: #F5F5F5;
  border-radius: 0 0 6px 6px;
}
.news-list .tit-16-30 {
  color: #000;
  height: 3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-list .item-img {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 368/207;
  border-radius: 6px 6px 0 0;
}
.news-list .item-img > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (min-width: 992px) {
  .search-keywords .close-search:hover {
    color: #FFD300;
  }
  .news-list .inner-item:hover .item-title {
    text-decoration: underline;
  }
  .news-list .inner-item:hover .item-img img {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}
@media (max-width: 991.98px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.4rem 0;
    min-height: 5.61rem;
  }
  .news-list .item-body {
    padding: 0.5rem 0.4rem;
  }
  .news-list .item-title {
    font-size: 0.3rem;
    line-height: 0.48rem;
    height: 0.96rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .news-content {
    padding: 0.6rem 0 0 0;
  }
  .news-content .news-hot {
    max-width: initial;
    margin-bottom: 0.4rem;
  }
  .news-content .news-hot img {
    border-radius: 0.1rem 0.1rem 0 0;
    object-fit: cover;
    height: 100%;
  }
  .news-content .news-hot .desc {
    padding: 0.5rem 0.4rem;
    border-radius: 0 0 0.1rem 0.1rem;
    background: #F5F5F5;
    font-size: 0.3rem;
    line-height: 0.48rem;
    margin-top: 0;
    text-align: left;
    height: initial;
    max-height: 0.96rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    box-sizing: content-box;
  }
  .news-wrap {
    padding: 0.8rem 0 1rem;
  }
  .search-keywords .close-search {
    right: 0.4rem;
  }
  .search-keywords .icon-search {
    width: 0.4rem;
    height: 0.4rem;
    -webkit-mask: url(/img/images1/search06.svg) no-repeat center/contain;
    mask: url(/img/images1/search06.svg) no-repeat center/contain;
  }
  .search-keywords input {
    height: 0.8rem;
    border-radius: 0.6rem;
    padding: 0rem 1.2rem 0 0.4rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .search-keywords input::-webkit-input-placeholder {
    color: #999;
  }
  .search-keywords input::placeholder {
    color: #999;
  }
  .search-keywords .search-input {
    width: 100%;
  }
}
/* 自定义样式-新闻详情 */
.newsdet-doc {
  min-height: 50vh;
  padding: 2rem 0 0;
}
.newsdet-doc .rocket-content__inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0;
}

.news-del-content {
  padding: 5.5rem 0 6rem;
  color: #000;
}
.news-del-content .inner {
  display: -webkit-flex;
  display: flex;
  gap: 0 min(5.2083333333vw, 100px);
}
.news-del-content .content-l {
  -webkit-flex: 1;
          flex: 1;
}
.news-del-content .content-r {
  width: 31.0810810811%;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.news-del-content .content-r .tit-16-30 {
  margin: 0 0 1.7rem 0;
}

.content-top {
  border-bottom: 1px solid #DBDBDB;
  padding: 0 0 0.6rem 0;
}
.content-top .tit-24-36 {
  font-weight: 700;
}
.content-top .date {
  color: #999;
  margin: 0.6rem 0 0 0;
}

.latest-news .inner-slide {
  display: block;
}
.latest-news .swiper-wrapper {
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 2rem 0;
}
.latest-news .item-img {
  width: 100%;
  aspect-ratio: 368/207;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.latest-news .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.latest-news .item-body {
  padding: 1rem 0 0 0;
  font-size: 14px;
  line-height: 22px;
}
.latest-news .item-title {
  color: #333;
  max-height: 44px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.latest-news .item-date {
  color: #999;
  margin: 0.15rem 0 0 0;
}

@media (min-width: 992px) {
  .latest-news .inner-slide:hover .item-img img {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  .latest-news .inner-slide:hover .item-title {
    text-decoration: underline;
  }
}
@media (max-width: 991.98px) {
  .latest-news .item-title {
    max-height: 0.96rem;
  }
  .latest-news .swiper-wrapper {
    gap: 0.5rem 0;
  }
  .latest-news .item-body {
    padding: 0.3rem 0 0 0;
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  .latest-news .item-date {
    margin: 0.1rem 0 0 0;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .newsdet-doc {
    padding: 0.6rem 0 0 0;
  }
  .content-top {
    padding: 0 0 0.3rem 0;
    border-bottom: 0.02rem solid #DBDBDB;
  }
  .content-top .tit-24-36 {
    font-size: 0.42rem;
    line-height: 0.54rem;
    text-align: left;
  }
  .content-top .date {
    margin: 0.4rem 0 0 0;
    line-height: 0.42rem;
  }
  .news-del-content {
    padding: 1rem 0 1rem;
  }
  .news-del-content .content-r {
    width: 100%;
  }
  .news-del-content .content-r .tit-16-30 {
    font-size: 0.42rem;
    line-height: 0.54rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
  }
  .news-del-content .inner {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 1rem 0;
  }
}
.dynamic-widget_pro {
  margin: 0 0 6rem 0;
}
.dynamic-widget_pro.isone .rocket-swiper-control-box {
  display: none;
}
.dynamic-widget_pro.isone .rocket-swiper-handle {
  display: none;
}
.dynamic-widget_pro .dynamic-pro-block {
  background: #F5F5F5;
  padding: 3.1rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.dynamic-widget_pro .tit-24-36 {
  margin: 0 0 1.45rem 0;
  font-weight: 600;
}
.dynamic-widget_pro .pro-name {
  font-weight: 600;
  font-size: clamp(14px, 1rem, 20px);
  line-height: 1.4em;
  --line-height: 1.4em;
  text-align: center;
}
.dynamic-widget_pro .dynamic-pro-swiper-re {
  width: 56.3344594595%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.dynamic-widget_pro .dynamic-pro-swiper-re .rocket-swiper-control-box {
  position: initial;
  margin: 0;
}
.dynamic-widget_pro .dynamic-pro-swiper-re .rocket-swiper-prev {
  bottom: initial;
  right: -webkit-calc(100% + 4rem);
  right: calc(100% + 4rem);
  top: 50%;
  left: initial;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
.dynamic-widget_pro .dynamic-pro-swiper-re .rocket-swiper-next {
  bottom: initial;
  right: initial;
  top: 50%;
  left: -webkit-calc(100% + 4rem);
  left: calc(100% + 4rem);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: initial;
  position: absolute;
}
.dynamic-widget_pro .dynamic-pro-swiper {
  overflow: hidden;
}
.dynamic-widget_pro .dynamic-pro-swiper .inner-slide {
  display: block;
}
.dynamic-widget_pro .pro-img {
  aspect-ratio: 667/375;
  background: #fff;
  overflow: hidden;
  margin: 0 0 0.9rem 0;
}
.dynamic-widget_pro .pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}

@media (min-width: 992px) {
  .dynamic-pro-swiper .inner-slide:hover .pro-name {
    text-decoration: underline;
  }
}
@media (max-width: 991.98px) {
  .dynamic-widget_pro {
    margin: 0 0 1.2rem 0;
  }
  .dynamic-widget_pro .rocket-swiper-handle .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
  }
  .dynamic-widget_pro .tit-24-36 {
    margin: 0 0 0.6rem 0;
  }
  .dynamic-widget_pro .pro-name {
    font-size: 0.3rem;
    line-height: 0.46rem;
  }
  .dynamic-widget_pro .dynamic-pro-swiper-re {
    width: 3.66rem;
  }
  .dynamic-widget_pro .pro-img {
    width: 3.66rem;
    margin: 0 0 0.2rem 0;
  }
  .dynamic-widget_pro .dynamic-pro-block {
    padding: 0.5rem 0;
  }
}
/* 自定义样式-联系我们 */
.consult-serve {
  margin: 5.5rem 0 3.4rem;
}
.consult-serve .title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.4rem;
}

.consult-content {
  background: #FFD300;
  padding: 2rem min(5.625vw, 108px) 2.45rem min(5.78125vw, 111px);
}
.consult-content .f-title {
  text-align: center;
  margin: 0 0 1rem 0;
  font-weight: 700;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.consult-content .f-title .text {
  display: block;
  width: 56.7875647668%;
  text-align: left;
}

.consult-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 2.3rem 0;
}
.consult-list .item-title {
  font-weight: 600;
}
.consult-list .lx-list {
  font-size: 14px;
  line-height: 22px;
}
.consult-list .list-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 0 0.95rem;
}
.consult-list .item-l {
  margin: 0.75rem 0 0 0;
}
.consult-list .imgwrap {
  width: 2.5rem;
  height: 2.5rem;
}
.consult-list .imgwrap img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.apply-detail {
  display: -webkit-flex;
  display: flex;
  gap: 0 min(20px, 1.0416666667vw);
}

.apply-detail-l {
  -webkit-flex: 1;
          flex: 1;
  padding: 3.3rem 0 0 0;
}

.apply-detail-r {
  width: 56.7875647668%;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .apply-detail-l {
    padding: 0 0 0 0;
  }
  .consult-list {
    gap: 0.4rem 0;
  }
  .consult-list .item-l {
    margin: 0.2rem 0 0 0;
  }
  .consult-list .list-item {
    gap: 0 0.4rem;
  }
  .consult-list .lx-list {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin: 0.1rem 0 0 0;
  }
  .consult-list .lx-list .item {
    margin-bottom: 0.05rem;
  }
  .consult-list .lx-list .item:last-child {
    margin-bottom: 0;
  }
  .consult-list .item-title {
    font-size: 0.3rem;
    line-height: 0.46rem;
    font-weight: 600;
  }
  .consult-list .imgwrap {
    width: 1.2rem;
    height: 1.2rem;
  }
  .apply-detail-r {
    width: 100%;
  }
  .apply-detail {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem 0;
  }
  .consult-content {
    padding: 0.6rem 0.4rem;
  }
  .consult-content .f-title.tit-24-36 {
    line-height: 0.48rem;
    margin: 0 0 0.5rem 0;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .consult-content .f-title.tit-24-36 .text {
    width: auto;
  }
  .consult-serve {
    margin: 1rem 0 1rem;
  }
  .consult-serve .title {
    margin-bottom: 0.5rem;
  }
}
.contact-box {
  margin: 3.4rem 0 6rem;
}
.contact-box .title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 3.4rem;
  line-height: 3.2rem;
}
.contact-box .lx-list {
  background: #F5F5F5;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0rem 6.75rem;
}
.contact-box .item-body {
  padding: 0.5rem 0 0 0;
}
.contact-box .item-title {
  font-size: clamp(1.1rem, 1.39vw, 1.2rem);
  line-height: 1.5em;
  --line-height: 1.5em;
  font-weight: 600;
  text-align: center;
}
.contact-box .item-desc {
  margin: 1rem 0 0 0;
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.88em;
  --line-height: 1.88em;
  color: #999;
  text-align: center;
}
.contact-box .item-img {
  width: 4.4rem;
  aspect-ratio: 1;
  margin-left: auto;
  margin-right: auto;
}
.contact-box .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-map-wrap {
  aspect-ratio: 1184/366;
  position: relative;
}
.contact-map-wrap > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 992px) {
  .contact-box .item-title {
    height: 3em;
  }
}
@media (max-width: 991.98px) {
  .contact-box {
    margin: 1rem 0 1rem;
  }
  .contact-box .item-img {
    width: 1.24rem;
  }
  .contact-box .lx-list {
    padding: 0.9rem 1.15rem 0.9rem;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.7rem 0;
  }
  .contact-box .title {
    margin: 0 0 0.5rem 0;
    line-height: 0.64rem;
  }
  .contact-box .item-body {
    padding: 0.19rem 0 0 0;
  }
  .contact-box .item-title {
    font-size: 0.36rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
  }
  .contact-box .item-desc {
    margin: 0.1rem 0 0 0;
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
  }
  .contact-map-wrap {
    aspect-ratio: 650/300;
  }
}
/* 自定义样式-关于我们 */
.team-box {
  margin: 4.6rem 0 5rem;
}
.team-box .tit-40-56 {
  text-align: center;
  font-weight: 600;
  margin: 0 0 3rem 0;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.9rem 1.9rem;
}
.team-list .inner-item {
  border-radius: 0.55rem;
  padding: 2rem 2.4rem 2.2rem;
  background: #F5F5F5;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.team-list .item-img {
  aspect-ratio: 1;
  width: 4.45rem;
}
.team-list .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-list .inner-item {
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.team-list .item-body {
  padding: 0.7rem 0 0 0;
  text-align: center;
}
.team-list .item-desc {
  padding: 0.95rem 0 0 0;
  font-size: clamp(14px, 1rem, 20px);
  line-height: 1.65em;
  --line-height: 1.65em;
  color: #666;
  text-align: left;
}

@media (min-width: 992px) {
  .team-list .list-item:hover .inner-item {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@media (max-width: 991.98px) {
  .team-box {
    margin: 1rem 0 1rem;
  }
  .team-box .tit-40-56 {
    margin: 0 0 0.5rem 0;
    font-size: 0.48rem;
    line-height: 0.6rem;
  }
  .team-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.4rem 0rem;
  }
  .team-list .inner-item {
    border-radius: 0.1rem;
    padding: 0.6rem 0.4rem;
    width: 100%;
  }
  .team-list .item-img {
    width: 1.4rem;
  }
  .team-list .item-body {
    padding: 0.3rem 0 0 0;
  }
  .team-list .item-desc {
    padding: 0.3rem 0 0 0;
    font-size: 0.3rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
  }
}
.about-history {
  background: var(--mt-global-color-theme-h);
  padding: 3rem 0 5.25rem;
}
.about-history .tit-40-56 {
  text-align: center;
  margin: 0 0 2rem 0;
}

.about-history-content {
  overflow: hidden;
}
.about-history-content .slide-title {
  font-weight: 600;
}
.about-history-content .slide-r {
  width: 32.9679595278%;
  margin: 2.4rem 0 0 0;
}
.about-history-content .slide-l {
  -webkit-flex: 1;
          flex: 1;
}
.about-history-content .slide-desc {
  margin: 1.45rem 0 0 0;
}
.about-history-content .slide-desc p {
  margin-bottom: 0.4rem;
}
.about-history-content .slide-desc p:last-child {
  margin-bottom: 0;
}
.about-history-content .slide-img {
  aspect-ratio: 391/221;
  overflow: hidden;
  border-radius: 0.5rem;
}
.about-history-content .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-history-content .inner-slide {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  gap: 0 clamp(0px, 6.40625vw, 123px);
}

.about-history-year {
  overflow: hidden;
}
.about-history-year .slide-year {
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  gap: 0.25rem 0;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.about-history-year .slide-year::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
}
.about-history-year .swiper-slide-thumb-active .slide-year {
  color: var(--mt-global-color-theme);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.39vw, 1.2rem);
  line-height: 1.38em;
  --line-height: 1.38em;
}
.about-history-year .swiper-slide-thumb-active .slide-year::before {
  background: var(--mt-global-color-theme);
}

.about-history-year-re {
  position: relative;
  margin: 6rem 0 0 0;
}
.about-history-year-re.isone .rocket-swiper-control-box {
  display: none;
}
.about-history-year-re::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.15rem;
  background: #fff;
  top: 0.45rem;
}
.about-history-year-re .rocket-swiper-control-box {
  position: initial;
  margin: 0;
}
.about-history-year-re .rocket-swiper-prev {
  bottom: -webkit-calc(100% + 2rem);
  bottom: calc(100% + 2rem);
  left: 0;
  top: initial;
  right: initial;
  position: absolute;
}
.about-history-year-re .rocket-swiper-next {
  bottom: -webkit-calc(100% + 2rem);
  bottom: calc(100% + 2rem);
  left: initial;
  top: initial;
  right: 0;
  position: absolute;
}

@media (max-width: 991.98px) {
  .about-history-year-re {
    position: relative;
    margin: 1.5rem 0 0 0;
  }
  .about-history-year-re::before {
    height: 0.04rem;
    top: 0.09rem;
  }
  .about-history-year-re .rocket-swiper-prev {
    bottom: -webkit-calc(100% + 0.4rem);
    bottom: calc(100% + 0.4rem);
  }
  .about-history-year-re .rocket-swiper-next {
    bottom: -webkit-calc(100% + 0.4rem);
    bottom: calc(100% + 0.4rem);
  }
  .rocket-swiper-control.white {
    background: rgba(255, 255, 255, 0.4);
  }
  .rocket-swiper-control.white .bi {
    background-color: #fff;
  }
  .about-history-year .slide-year {
    gap: 0.18rem 0;
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .about-history-year .slide-year::before {
    content: "";
    width: 0.25rem;
    height: 0.25rem;
  }
  .about-history-year .swiper-slide-thumb-active .slide-year {
    font-size: 0.36rem;
    line-height: 0.48rem;
    --line-height: 0.48rem;
  }
  .about-history-content .inner-slide {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.56rem 0;
  }
  .about-history-content .slide-r {
    margin: 0 0 0 0;
    width: 100%;
  }
  .about-history-content .slide-img {
    border-radius: 0.1rem;
  }
  .about-history-content .slide-desc {
    margin: 0.3rem 0 0 0;
    height: 3.04rem;
    padding-right: 0.46rem;
    overflow-y: auto;
  }
  .about-history-content .slide-desc::-webkit-scrollbar {
    width: 2.5px;
  }
  .about-history-content .slide-desc::-webkit-scrollbar-thumb {
    width: 2.5px;
    background-color: #666;
    border-radius: 5px;
  }
  .about-history-content .slide-desc::-webkit-scrollbar-track {
    background-color: #E6E6E6;
    border-radius: 5px;
  }
  .about-history-content .slide-desc::-webkit-scrollbar-track-piece {
    background-color: #E6E6E6;
  }
  .about-history-content .slide-desc p {
    margin-bottom: 0.2rem;
  }
  .about-history {
    padding: 0.8rem 0;
  }
  .about-history .slide-title {
    font-size: 0.42rem;
    line-height: 0.54rem;
  }
  .about-history .tit-40-56 {
    margin: 0 0 0.6rem 0;
    font-size: 0.48rem;
    line-height: 0.6rem;
  }
}
.honor-box {
  padding: 4.6rem 0 5rem;
}
.honor-box .tit-40-56 {
  text-align: center;
  margin: 0 0 3rem 0;
}
.honor-box.isone .rocket-swiper-control-box {
  display: none !important;
}

.about-honor-re {
  position: relative;
  width: 60vw;
  max-width: 1035px;
  margin-left: auto;
  margin-right: auto;
}
.about-honor-re .rocket-swiper-control-box {
  position: initial;
  margin: 0;
}
.about-honor-re .rocket-swiper-prev {
  bottom: initial;
  right: -webkit-calc(100% + 4rem);
  right: calc(100% + 4rem);
  top: 50%;
  left: initial;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}
.about-honor-re .rocket-swiper-next {
  bottom: initial;
  right: initial;
  top: 50%;
  left: -webkit-calc(100% + 4rem);
  left: calc(100% + 4rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: initial;
  position: absolute;
}

.about-honor {
  width: 100%;
  overflow: hidden;
}
.about-honor .inner-slide {
  display: block;
  background: #F5F5F5;
  border-radius: 0.3rem;
  padding: 2.35rem 1.65rem;
  height: 100%;
}
.about-honor .swiper-slide {
  height: auto;
}
.about-honor .slide-body {
  padding: 1.2rem 0 0 0;
  margin: 0 -0.45rem 0;
}
.about-honor .slide-img {
  overflow: hidden;
  aspect-ratio: 200/112;
}
.about-honor .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991.98px) {
  .honor-box {
    padding: 1rem 0 1rem;
  }
  .honor-box .global-paging .paging-ctrl {
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
  }
  .honor-box .global-paging .paging-ctrl.prev .arrow {
    -webkit-mask: url(/img/common/swip-left.svg) no-repeat center/contain;
            mask: url(/img/common/swip-left.svg) no-repeat center/contain;
    background-color: #fff;
    width: 0.6rem;
    height: 0.6rem;
  }
  .honor-box .tit-40-56 {
    margin: 0 0 0.5rem 0;
    font-size: 0.48rem;
    line-height: 0.6rem;
  }
  .about-honor-re {
    width: 100%;
    max-width: 100%;
  }
  .about-honor {
    width: 100%;
  }
  .about-honor .inner-slide {
    border-radius: 0.1rem;
    padding: 0.8rem 0.5rem;
  }
  .about-honor .slide-title {
    font-size: 0.3rem;
    line-height: 0.48rem;
    text-align: center;
  }
  .about-honor .slide-body {
    padding: 0.8rem 0 0 0;
    margin: 0 0rem 0;
  }
}
.partner-box {
  background: #F5F5F5;
  padding: 3rem 0 4.2rem;
  margin: 0 0 6rem 0;
  position: relative;
}
.partner-box .title {
  text-align: center;
  margin: 0 0 3rem 0;
}

.img-seamlessScroll-box {
  width: 100%;
  overflow: hidden;
}

.seamlessScroll-ul {
  display: -webkit-flex;
  display: flex;
  width: -webkit-fit-content;
  width: fit-content;
}
.seamlessScroll-ul li {
  border-radius: 0px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-right: clamp(0px, 1.3020833333vw, 25px);
}
.seamlessScroll-ul li img {
  width: clamp(0px, 10.7291666667vw, 206px);
  aspect-ratio: 206/108;
  object-position: center;
  object-fit: cover;
}

.img-seamlessScroll-left {
  margin: 0 0 2.4rem 0;
}

@media (min-width: 992px) {
  .partner-box .lg-inner {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .partner-box .lg-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
  }
  .seamlessScroll-ul li {
    border-radius: 0rem;
    overflow: hidden;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    margin-right: 10px;
  }
  .seamlessScroll-ul li img {
    width: 2.06rem;
    object-position: center;
    object-fit: cover;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media (max-width: 991.98px) {
  .partner-box {
    padding: 0.8rem 0 1rem;
    margin: 0 0 0 0;
  }
  .partner-box::before, .partner-box::after {
    display: none;
  }
  .partner-box .title {
    margin: 0 0 0.6rem 0;
    font-size: 0.48rem;
    line-height: 0.6rem;
  }
  .seamlessScroll-ul li {
    border-radius: 0px;
    overflow: hidden;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    margin-right: 0.28rem;
  }
  .img-seamlessScroll-left {
    margin: 0 0 0.3rem 0;
  }
}
/* 自定义样式-产品频道页 */
.solution-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem 2rem;
  min-height: 5rem;
}
.solution-list > * {
  min-width: 0px;
}
.solution-list .item-body {
  background: #F5F5F5;
  padding: 1.2rem 0.6rem;
}
.solution-list .item-title {
  height: 3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.solution-list .inner-item {
  display: block;
}
.solution-list .item-img {
  aspect-ratio: 368/207;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
.solution-list .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.solution-box {
  margin: 3.4rem 0 0rem;
}

.solution-wrap {
  padding: 4.25rem 0 6rem;
  position: relative;
  z-index: 1;
}
.solution-wrap::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: url(/img/common/main-bg.webp);
  background-size: 100% auto;
}

.pro-chanel .main-box {
  background: #000;
}

@media (min-width: 992px) {
  .solution-list .inner-item:hover .item-title {
    text-decoration: underline;
  }
  .solution-list .inner-item:hover .item-img img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
@media (max-width: 991.98px) {
  .solution-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.4rem 0rem;
    min-height: 1rem;
  }
  .solution-list .item-body {
    background: #F5F5F5;
    padding: 0.5rem 0.4rem;
  }
  .solution-list .item-title {
    height: 0.96rem;
  }
  .solution-list .item-img {
    border-radius: 0.1rem 0.1rem 0 0;
  }
  .solution-box {
    margin: 0.8rem 0 0rem;
  }
  .solution-wrap {
    margin: 0rem 0 0rem;
    padding: 0.16rem 0 1.2rem;
  }
}
.select-fiter-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.15rem 2.15rem;
  min-height: 5rem;
}
.select-fiter-list > * {
  min-width: 0px;
}
.select-fiter-list .item-img {
  aspect-ratio: 1;
  position: relative;
}
.select-fiter-list .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.select-fiter-list .item-body {
  padding: 1.5rem 0 0 0;
}
.select-fiter-list .item-title {
  text-align: center;
}
.select-fiter-list .inner-item {
  display: block;
  background: #f5f5f5;
  border-radius: 0.3rem;
  padding: 1.6rem clamp(0px, 2.0833333333vw, 40px) 1.6rem;
  height: 100%;
}

@media (min-width: 992px) {
  .select-fiter-list .inner-item:hover {
    background: var(--mt-global-color-theme-h);
  }
}
@media (max-width: 991.98px) {
  .select-fiter-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.3rem 0.3rem;
    min-height: 3rem;
  }
  .select-fiter-list .item-body {
    padding: 0.3rem 0 0 0;
  }
  .select-fiter-list .item-title {
    text-align: center;
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  .select-fiter-list .inner-item {
    border-radius: 0.1rem;
    padding: 0.47rem 0.51rem;
  }
}
.pro-video-part {
  position: relative;
  padding: 6rem 0 1px;
}
.pro-video-part::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: url(/img/common/main-bg.webp);
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.pro-video-part .desc {
  color: #fff;
  margin: 2.1rem auto 0 auto;
  max-width: 47.4rem;
  text-align: center;
}
.pro-video-part .title {
  text-align: center;
  color: var(--mt-global-color-theme-h);
}
.pro-video-part .hot-media {
  margin: 2.5rem 0 0 0;
}
.pro-video-part .hot-media > * {
  aspect-ratio: 1284/722;
  border-radius: 1rem;
  overflow: hidden;
}
.pro-video-part .hot-media img, .pro-video-part .hot-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991.98px) {
  .pro-sp .pro-video-part {
    padding: 1rem 0 1px;
  }
  .pro-video-part {
    padding: 1.2rem 0 1px;
  }
  .pro-video-part::after {
    background-image: url(/img/images/d1-video-bg-mob.webp);
    background-size: cover;
  }
  .pro-video-part .desc {
    margin: 0.25rem 0 0 0;
    max-width: initial;
    text-align: left;
  }
  .pro-video-part .title {
    text-align: left;
    color: var(--mt-global-color-theme-h);
  }
  .pro-video-part .hot-media {
    margin: 0.5rem 0 0 0;
  }
  .pro-video-part .hot-media > * {
    border-radius: 0.1rem;
    overflow: hidden;
  }
  .pro-video-part .hot-media .rocket-image {
    aspect-ratio: 650/366;
  }
  .pro-video-part .hot-media img, .pro-video-part .hot-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .pro-sp .pro-video-part .title {
    text-align: center;
  }
}
.pro-feature-list {
  margin: clamp(0px, 6.25vw, 120px) 0 0 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: clamp(0px, 6.25vw, 120px) 0;
}
.pro-feature-list .item-title {
  color: var(--mt-global-color-theme-h);
}
.pro-feature-list .item-desc {
  margin-top: clamp(0px, 1.875vw, 36px);
}
.pro-feature-list .item-desc {
  color: #fff;
}
.pro-feature-list .item-r {
  width: 59.765625%;
}
.pro-feature-list .media-box {
  width: 100%;
  height: 100%;
}
.pro-feature-list .item-img {
  width: 100%;
  aspect-ratio: 765/430;
  border-radius: 0.7rem;
  overflow: hidden;
}
.pro-feature-list .item-img img, .pro-feature-list .item-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pro-feature-list .item-l {
  -webkit-flex: 1;
          flex: 1;
  padding: clamp(0px, 0vw, 0px) 0 0 0;
}
.pro-feature-list .list-item {
  display: -webkit-flex;
  display: flex;
  gap: 0 clamp(0px, 3.125vw, 60px);
}
.pro-feature-list .list-item:nth-child(even) {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0 clamp(0px, 4.3229166667vw, 83px);
}
.pro-feature-list .list-item:nth-child(even) .item-title {
  text-align: right;
}
.pro-feature-list .list-item:nth-child(even) .item-l {
  padding: clamp(0px, 0vw, 0px) 0 0 0;
}
.pro-feature-list .list-item:nth-child(even) .item-desc {
  text-align: right;
}

@media (min-width: 992px) {
  .pro-feature-list .list-item {
    -webkit-align-items: center;
            align-items: center;
  }
  .pro-feature-list .list-item:nth-child(even) {
    padding: 0;
  }
  .pro-feature-list .item-r {
    width: 50.765625%;
  }
  .pro-feature-list .item-title {
    font-size: clamp(1.3rem, 2.08vw, 1.8rem);
    line-height: 1.28em;
    --line-height: 1.28em;
  }
  .pro-feature-list .item-desc {
    font-size: clamp(14px, 1rem, 20px);
    line-height: 1.5em;
    --line-height: 1.5em;
  }
}
@media (max-width: 991.98px) {
  .pro-feature-list {
    margin: 1rem 0 0 0;
    grid-gap: 1rem 0;
  }
  .pro-feature-list .item-desc {
    margin: 0.25rem 0rem 0 0rem;
  }
  .pro-feature-list .item-r {
    width: 100%;
  }
  .pro-feature-list .item-img {
    border-radius: 0.1rem;
  }
  .pro-feature-list .item-l {
    -webkit-flex: 1;
            flex: 1;
    padding: 0 0 0 0;
  }
  .pro-feature-list .rocket-image {
    aspect-ratio: 650/366;
    border-radius: 0.1rem;
    overflow: hidden;
  }
  .pro-feature-list .list-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem 0;
  }
  .pro-feature-list .list-item:nth-child(even) {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem 0;
  }
  .pro-feature-list .list-item:nth-child(even) .item-title {
    text-align: left;
  }
  .pro-feature-list .list-item:nth-child(even) .item-l {
    padding: 0;
  }
  .pro-feature-list .list-item:nth-child(even) .item-desc {
    text-align: left;
  }
}
.pro-adv {
  position: relative;
  margin: clamp(0px, 6.25vw, 120px) 0 0 0;
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.pro-adv .pro-adv-img {
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
.pro-adv .pro-adv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pro-adv .img-up {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.pro-adv .inner {
  padding: clamp(0px, 2.6041666667vw, 50px) 0 0 0;
}
.pro-adv .title {
  color: var(--mt-global-color-theme-h);
  text-align: center;
  line-height: 4.2rem;
}
.pro-adv .desc {
  color: #fff;
  max-width: 60rem;
  margin-top: 1.3rem;
  text-align: center;
}

@media (max-width: 991.98px) {
  .pro-adv {
    background: #010101;
    margin: 1.2rem 0 0 0;
  }
  .pro-adv .pro-adv-img img {
    height: auto;
  }
  .pro-adv .title {
    font-size: 0.48rem;
    line-height: 0.6rem;
  }
  .pro-adv .desc {
    margin: 0.2rem -0.1rem 0 -0.1rem;
    max-width: initial;
  }
  .pro-adv .inner {
    padding: 0;
  }
  .pro-adv .img-up {
    padding: 1.4rem 0 6.88rem 0;
    min-height: initial;
  }
}
.pro-img-intrduce {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: clamp(0px, 6.25vw, 120px);
  width: 100%;
}
.pro-img-intrduce .imgwrap {
  width: 100%;
  max-width: 1280px;
}
.pro-img-intrduce .imgwrap img {
  display: block;
  width: 100%;
  height: auto !important;
}

@media (max-width: 991.98px) {
  .pro-img-intrduce {
    margin-top: 0.6rem;
    width: 100%;
  }
}
.pro-list-box {
  padding: 6rem 0 6.05rem;
  background: #110E00;
}
.pro-list-box .title {
  color: #fff;
  text-align: center;
}

.pro-list-inner {
  margin: 2.5rem 0 0 0;
}
.pro-list-inner .simulate-thead {
  display: none;
}
.pro-list-inner .nothead .simulate-thead {
  display: table;
}
.pro-list-inner .nothead .rocket-text-table thead {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.pro-list-inner .nothead.rocket-text-detail .rocket-text-table table tbody tr:first-child td {
  padding: 0.45rem 0 0.7rem 12.0833333333%;
}
.pro-list-inner .nothead.rocket-text-table table tbody tr:nth-child(2) td {
  padding: 2.45rem 0 0.7rem 12.0833333333%;
}

@media (max-width: 991.98px) {
  .pro-list-box {
    padding: 1.2rem 0 1.2rem;
  }
  .pro-list-inner {
    margin: 0.5rem 0 0 0;
  }
  .pro-list-inner .nothead .simulate-thead {
    display: table;
  }
  .pro-list-inner .nothead .rocket-text-table thead {
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .pro-list-inner .nothead .rocket-text-table thead tr th {
    height: 0;
    overflow: hidden;
    padding: 0;
  }
  .pro-list-inner .nothead.rocket-text-detail .rocket-text-table table tbody tr:first-child td {
    padding: 0rem 0 0.26rem 0;
  }
  .pro-list-inner .nothead.rocket-text-table table tbody tr:nth-child(2) td {
    padding: 0.5rem 0 0.26rem 0;
  }
}
.pro-intro-list {
  margin: 6rem 0 0 0;
}

.pro-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem 2.5rem;
  margin: 2.5rem 0 0 0;
}
.pro-intro .inner-item {
  border-radius: 0.9rem;
  background: #999;
  padding: 2.85rem 1.5rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  height: 100%;
}
.pro-intro .item-img {
  width: 5.2rem;
  aspect-ratio: 1;
}
.pro-intro .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pro-intro .item-body {
  padding: 0.35rem 0 0 0;
}
.pro-intro .item-title {
  font-size: clamp(1rem, 2.31vw, 2rem);
  line-height: 1.2em;
  --line-height: 1.2em;
  font-weight: 600;
  text-align: center;
  color: var(--mt-global-color-theme-h);
}
.pro-intro .item-desc {
  margin: 1.65rem 0 0 0;
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 1.5em;
  --line-height: 1.5em;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

@media (max-width: 991.98px) {
  .pro-intro {
    display: -webkit-flex;
    display: flex;
    grid-template-columns: initial;
    grid-gap: initial;
    margin: 0.5rem 0 0 0;
  }
  .pro-intro .inner-item {
    border-radius: 0.2rem;
    padding: 0.8rem 0.1rem;
  }
  .pro-intro .item-img {
    width: 1.8rem;
  }
  .pro-intro .item-body {
    padding: 0.1rem 0 0 0;
  }
  .pro-intro .item-title {
    font-size: 0.48rem;
    line-height: 0.6rem;
    --line-height: 0.6rem;
  }
  .pro-intro .item-desc {
    margin: 0.4rem 0 0 0;
    font-size: 0.3rem;
    line-height: 0.46rem;
    --line-height: 0.46rem;
    font-weight: 600;
  }
  .pro-intro-box {
    overflow: hidden;
    margin: 0 -0.5rem 0;
    padding: 0 0.5rem;
  }
  .pro-intro-box .swiper-slide {
    height: auto;
  }
  .pro-intro-list {
    margin: 1rem 0 0 0;
  }
  .pro-intro-list .title {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .public-ddroot-imgSwiper.isone .rocket-swiper-control-box {
    display: none;
  }
  .public-ddroot-imgSwiper.isone .swiper-slide:last-child {
    margin-right: 0 !important;
  }
  .public-ddroot-imgSwiper.isone .swiper-wrapper {
    -webkit-justify-content: center;
            justify-content: center;
  }
}
.ddroot-imgSwiper-box {
  margin: clamp(0px, 8.3333333333vw, 160px) 0 clamp(0px, 8.3333333333vw, 160px);
  overflow: hidden;
}
.ddroot-imgSwiper-box .public-swiper-pross.rocket-swiper-paging .swiper-pagination-bullet-active em {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.ddroot-imgSwiper-box .title {
  margin: 0 0 clamp(0px, 4.6875vw, 90px) 0;
}
.ddroot-imgSwiper-box .rocket-swiper-control.rocket-swiper-prev {
  left: -3rem !important;
}
.ddroot-imgSwiper-box .rocket-swiper-control.rocket-swiper-next {
  right: -3rem !important;
}

.ddroot-imgSwiper {
  overflow: hidden;
}

.ddroot-imgSwiper-re {
  position: relative;
}
.ddroot-imgSwiper-re .inners-slide {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.ddroot-imgSwiper-re .swiper-slide {
  height: initial;
}
.ddroot-imgSwiper-re .slide-img {
  aspect-ratio: 320/355;
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem;
}
.ddroot-imgSwiper-re .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.ddroot-imgSwiper-re .slide-body {
  padding: 0.8rem 0 0 0;
  -webkit-flex: 1;
          flex: 1;
}
.ddroot-imgSwiper-re .slide-title {
  background: #1A1919;
  border-radius: 2.25rem;
  color: #fff;
  padding: 0.35rem 0.5rem;
  text-align: center;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.ddroot-imgSwiper-re .ddroot-imgSwiper02 .slide-img {
  aspect-ratio: 316/632;
}
.ddroot-imgSwiper-re .ddroot-imgSwiper02 .slide-body {
  position: absolute;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  bottom: 0.6rem;
}
.ddroot-imgSwiper-re .ddroot-imgSwiper02 .slide-title {
  border-radius: 7.8rem;
  background: rgba(0, 0, 0, 0.63);
  padding: 0.35rem 1rem;
  min-width: 5.8rem;
}

@media (min-width: 992px) {
  .ddroot-imgSwiper-box .rocket-swiper-paging {
    display: none;
  }
  .ddroot-imgSwiper-re .slide-title {
    font-size: clamp(14px, 1rem, 20px);
    line-height: 1.5em;
    --line-height: 1.5em;
  }
  .ddroot-imgSwiper-re .inners-slide:hover .slide-img img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
@media (max-width: 991.98px) {
  .public-ddroot-imgSwiper .public-swiper-dot {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .ddroot-imgSwiper {
    overflow: initial;
  }
  .ddroot-imgSwiper-box {
    margin: 1.4rem 0 1.4rem;
    overflow: hidden;
  }
  .ddroot-imgSwiper-box.isone.ddroot-imgSwiper-box02 .swiper-wrapper {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .ddroot-imgSwiper-box .title {
    margin: 0 0 0.5rem 0;
    text-align: center;
  }
  .ddroot-imgSwiper-box .rocket-swiper-control.rocket-swiper-prev {
    left: -3rem !important;
    display: none;
  }
  .ddroot-imgSwiper-box .rocket-swiper-control.rocket-swiper-next {
    right: -3rem !important;
    display: none;
  }
  .ddroot-imgSwiper-re .public-swiper-pross.rocket-swiper-paging {
    position: relative;
    bottom: 0;
    margin: 0.57rem 0 0 0;
  }
  .ddroot-imgSwiper-re .swiper-slide {
    height: initial;
  }
  .ddroot-imgSwiper-re .slide-img {
    border-radius: 0.2rem;
  }
  .ddroot-imgSwiper-re .slide-body {
    padding: 0.3rem 0 0 0;
  }
  .ddroot-imgSwiper-re .slide-title {
    border-radius: 0.45rem;
    color: #fff;
    padding: 0.12rem 0.12rem;
    font-size: 0.36rem;
    line-height: 0.46rem;
    font-weight: 600;
  }
  .ddroot-imgSwiper-re .ddroot-imgSwiper02 {
    overflow: hidden;
  }
  .ddroot-imgSwiper-re .ddroot-imgSwiper02 .ddroot-imgSwiper {
    overflow: hidden;
  }
  .ddroot-imgSwiper-re .ddroot-imgSwiper02 .slide-title {
    padding: 0.12rem 0.18rem;
    min-width: 1.8rem;
    border-radius: 1.63rem;
  }
  .ddroot-imgSwiper-re .ddroot-imgSwiper02 .slide-body {
    bottom: 0.35rem;
  }
}
/* 自定义样式-论文 */
.search-banner {
  position: relative;
}
.search-banner .search-banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.search-banner .search-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.search-banner-up {
  padding: clamp(4rem, 7.5vw, 144px) 0 clamp(0px, 1.71875vw, 33px);
}
.search-banner-up .title {
  text-align: center;
  color: #fff;
  margin: 0 0 clamp(0px, 2.0833333333vw, 40px) 0;
}

.p-result .search-banner-up {
  padding: clamp(0px, 11.40625vw, 219px) 0 clamp(0px, 8.0729166667vw, 155px);
}

.public-soso {
  position: relative;
  max-width: 37.7rem;
  margin: clamp(0px, 0vw, 0px) auto 0 auto;
}
.public-soso .icon-ico-search {
  width: 1rem;
  height: 1rem;
}
.public-soso .result-search-ico {
  width: 5.3rem;
}
.public-soso .result-serach-input {
  height: 2.5rem;
  padding: 0 clamp(0px, 5.2083333333vw, 100px) 0 clamp(0px, 2.2395833333vw, 43px);
  background: #f5f5f5;
}
.public-soso .result-serach-input::-webkit-input-placeholder {
  color: #999;
}
.public-soso .result-serach-input::placeholder {
  color: #999;
}

@media (min-width: 992px) {
  .public-soso .result-search-ico:hover .icon-ico-search {
    background-color: var(--mt-global-color-theme-h);
  }
}
@media (max-width: 991.98px) {
  .search-banner-up {
    padding: 0.8rem 0 0.17rem;
  }
  .search-banner-up .title {
    text-align: center;
    color: #fff;
    margin: 0 0 0.4rem 0;
  }
  .public-soso {
    max-width: 100%;
    margin: clamp(0px, 0vw, 0px) auto 0 auto;
  }
  .public-soso .icon-ico-search {
    width: 0.4rem;
    height: 0.4rem;
  }
  .public-soso .result-search-ico {
    width: 1.2rem;
  }
  .public-soso .result-serach-input {
    height: 0.8rem;
    padding: 0 1rem 0 0.4rem;
    background: #f5f5f5;
    border-radius: 0.6rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .public-soso .result-serach-input::-webkit-input-placeholder {
    color: #999;
  }
  .public-soso .result-serach-input::placeholder {
    color: #999;
  }
}
.p-thesis .search-banner-bg {
  position: relative;
  height: clamp(190px, 18.75vw, 360px);
}
.p-thesis .search-banner-up {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 0;
}
.p-thesis .search-banner-up .title {
  margin-bottom: 0;
  text-align: left;
}
.p-thesis .search-banner-up .global-inner {
  padding: 0 0 clamp(0px, 0.8333333333vw, 16px) 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}

.thesis-filter {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  margin: clamp(0px, 2.4479166667vw, 47px) 0 0 0;
  position: absolute;
  right: 0;
  bottom: 1.25rem;
}

.thesis-filter-header {
  color: #fff;
  display: -webkit-flex;
  display: flex;
  gap: 0 0.45rem;
}
.thesis-filter-header .list-item {
  cursor: pointer;
}
.thesis-filter-header .list-item.active {
  font-weight: 600;
}

.laydate-box {
  position: relative;
}
.laydate-box.showClose .close-render {
  opacity: 1;
  pointer-events: auto;
}

.close-render {
  display: -webkit-flex;
  display: flex;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.render-input {
  width: 8.8rem;
  height: 1.55rem;
  border-radius: 0.35rem;
  background: #666;
  padding: 0 0 0 1.75rem;
  color: #fff;
}

.render-icon {
  display: -webkit-flex;
  display: flex;
  position: absolute;
  left: 0.55rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  pointer-events: none;
}

.laydate-box {
  margin: 0.35rem 0 0 0;
  opacity: 0;
}

.showTime .laydate-box {
  opacity: 1;
}

.icon-open-render {
  background: url(/img/images/Calendar.svg) no-repeat;
  background-size: contain;
  width: 0.8rem;
  height: 0.8rem;
}

.icon-close-render {
  background: url(/img/images/close-render.svg) no-repeat;
  background-size: contain;
  width: 0.95rem;
  height: 0.95rem;
}

.thesis-list {
  margin-top: 3.4rem;
}

@media (max-width: 991.98px) {
  .p-thesis .search-banner-up .title {
    text-align: center;
    margin-bottom: 1rem;
  }
  .thesis-list {
    margin-top: 0.6rem;
  }
  .thesis-filter {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    margin: 0.5rem 0 0 0;
    right: 0;
    width: 100%;
    bottom: 0.3rem;
  }
  .thesis-filter-header {
    gap: 0 0.3rem;
  }
  .thesis-filter-header .list-item {
    color: #999;
  }
  .thesis-filter-header .list-item.active {
    font-weight: 600;
    color: #fff;
  }
  .laydate-box {
    position: relative;
  }
  .laydate-box.showClose .close-render {
    opacity: 1;
    pointer-events: auto;
  }
  .close-render {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    right: 0.01rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
  }
  .render-input {
    width: 2.8rem;
    height: 0.6rem;
    border-radius: 0.1rem;
    background: #666;
    padding: 0 0 0 0.7rem;
  }
  .render-icon {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    left: 0.16rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    pointer-events: none;
  }
  .laydate-box {
    margin: 0.16rem 0 0 0;
    opacity: 0;
  }
  .showTime .laydate-box {
    opacity: 1;
  }
  .icon-open-render {
    width: 0.4rem;
    height: 0.4rem;
    scale: 0.8;
  }
  .icon-close-render {
    width: 0.38rem;
    height: 0.38rem;
  }
}
.thesis-list-result {
  margin: 5.5rem 0 6rem;
}
.thesis-list-result .result-panel {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.loadata-end {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 1rem 0 0 0;
}
.loadata-end .rmt-icon-loader {
  position: relative;
}

@media (max-width: 991.98px) {
  .thesis-list-result {
    margin: 0.8rem 0 1rem;
  }
  .loadata-end {
    padding: 0.5rem 0 0 0;
  }
  .loadata-end .rmt-icon-loader {
    width: 0.6rem;
    height: 0.6rem;
  }
}
/* 自定义样式-下载中心 */
.data-center-box {
  padding: 5.5rem 0 5.4rem;
}

.data-center {
  display: -webkit-flex;
  display: flex;
  gap: 0 clamp(0px, 4.53125vw, 87px);
  -webkit-justify-content: center;
          justify-content: center;
}
.data-center .item-svg {
  width: 7.7rem;
  aspect-ratio: 1;
  margin: 0 0 1.9rem 0;
}
.data-center .item-svg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.data-center .item-tite {
  text-align: center;
}
.data-center .inner-item {
  display: block;
  background: #F5F5F5;
  border-radius: 0.5rem;
  padding: 3.35rem 5.15rem;
}

@media (min-width: 992px) {
  .data-center .inner-item:hover {
    background: var(--mt-global-color-theme-h);
  }
}
@media (max-width: 991.98px) {
  .data-center {
    gap: 0 0.3rem;
  }
  .data-center .item-svg {
    width: 1.54rem;
    margin: 0 0 0.28rem 0;
  }
  .data-center .item-tite {
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  .data-center .inner-item {
    padding: 0.41rem 0.78rem 0.38rem 0.78rem;
    border-radius: 0.1rem;
  }
  .data-center-box {
    padding: 1.2rem 0 1.2rem;
  }
}
.public-menu-bmbox {
  background: #f3f3f3;
}
.public-menu-bmbox .item-more-menu .item > * {
  padding: 0.4rem 0 0.4rem 1.5rem;
  display: block;
}
.public-menu-bmbox .item-more-menu .item > *.active {
  background: var(--mt-global-color-theme-h);
  font-weight: 600;
}
.public-menu-bmbox .item-header {
  pointer-events: none;
}
.public-menu-bmbox .item-header > * {
  display: block;
  padding: 1rem 0 0.75rem 1.5rem;
}
.public-menu-bmbox .inner {
  padding: 5rem 0 6rem;
  display: grid;
  grid-template-columns: 23.125% 1fr;
  grid-gap: 0 clamp(0px, 4.53125vw, 87px);
}
.public-menu-bmbox .public-menu-l {
  background: #f5f5f5;
  min-height: 2.5rem;
}

.p-load .public-menu-bmbox .public-menu-l {
  background: none;
}

.public-menu .list-item {
  background: #fff;
  margin-bottom: 1.5rem;
}
.public-menu .list-item:last-child {
  margin-bottom: 0;
}
.public-menu .inner-item {
  display: -webkit-flex;
  display: flex;
  padding: 0.4rem 0;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.public-menu .list-item.active {
  background: var(--mt-global-color-theme-h);
}

.public-menu-del {
  background: #fff;
  padding: 1rem 1.9rem 1.4rem 1.9rem;
}

.public-menu-r .public-menu-title {
  margin: 0 0 1.6rem 0;
}

.load-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  background: #fff;
  margin: 1.2rem 0 0 0;
}

.icon-load {
  -webkit-mask: url(/img/images/icon-load.svg) no-repeat center/contain;
  mask: url(/img/images/icon-load.svg) no-repeat center/contain;
  background-color: currentColor;
  width: 1.15rem;
  height: 1.15rem;
  -webkit-transition: all 0s;
  transition: all 0s;
  display: block;
}

.load-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem 2rem;
  min-height: 10rem;
}
.load-list > * {
  min-width: 0px;
}
.load-list .inner-item {
  display: block;
  padding: 1.5rem 1.65rem;
  background: #F5F5F5;
  border-radius: 0.5rem;
  height: 100%;
}
.load-list .item-body {
  padding: 1.2rem 0 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}
.load-list .item-title {
  text-align: center;
}
.load-list .item-img {
  width: 100%;
  aspect-ratio: 200/112;
}
.load-list .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.public-menu-itemdel {
  display: none;
}
.public-menu-itemdel:nth-child(1) {
  display: block;
}
.public-menu-itemdel.styletwo .item-l {
  font-size: clamp(14px, 0.8rem, 16px);
  line-height: 2.5em;
  --line-height: 2.5em;
}
.public-menu-itemdel.styletwo .public-menu-title {
  margin-bottom: -0.25rem;
}
.public-menu-itemdel.styletwo .inner-item {
  background: none;
  padding: 1rem 0 0.6rem;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  gap: 0 1rem;
}
.public-menu-itemdel.styletwo .icon-load-box {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #F5F5F5;
  border-radius: 50%;
}
.public-menu-itemdel.styletwo .icon-load2 {
  -webkit-mask: url(/img/images/load02.svg) no-repeat center/contain;
  mask: url(/img/images/load02.svg) no-repeat center/contain;
  background-color: currentColor;
  width: 1.1rem;
  height: 1.1rem;
  -webkit-transition: all 0s;
  transition: all 0s;
  display: block;
}
.public-menu-itemdel.styletwo .list-item {
  border-bottom: 1px dashed #DDDDDD;
}
.public-menu-itemdel.styletwo .load-list {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0.4rem 0rem;
  min-height: 2rem;
}

.p-result .public-menu-itemdel.styletwo {
  margin-top: -1.5rem;
}

@media (min-width: 992px) {
  .public-menu-r {
    background: #fff;
  }
  .public-menu-bmbox .item-more-menu .item > *:not(.active):hover {
    background: #e6e6e6;
  }
  .public-menu .list-item:not(.active):hover .text {
    text-decoration: underline;
  }
  .load-list .inner-item:hover .load-icon, .load-list .inner-item:hover .icon-load-box {
    background: #FFD300;
  }
}
@media (max-width: 991.98px) {
  .p-result .public-menu-itemdel.styletwo {
    margin-top: -0.36rem;
  }
  .mob-menulv2 {
    display: -webkit-flex;
    display: flex;
    background: #fff;
  }
  .mob-menulv2 > * {
    -webkit-flex: 1;
            flex: 1;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    text-align: center;
    padding: 0.26rem 0;
  }
  .mob-menulv2 > *.active {
    background: var(--mt-global-color-theme-h);
  }
  .public-menu-bmbox .item-header {
    pointer-events: auto;
  }
  .public-menu-bmbox .item-more-menu {
    display: none;
  }
  .public-menu-del {
    padding: 0.25rem 0.4rem 0.6rem;
  }
  .public-menu-del .global-paging {
    margin-top: 0.8rem;
  }
  .public-menu-itemdel.styletwo .item-l {
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  .public-menu-itemdel.styletwo .inner-item {
    -webkit-align-items: center;
            align-items: center;
    padding: 0.35rem 0;
  }
  .public-menu-itemdel.styletwo .icon-load2 {
    width: 0.55rem;
    height: 0.55rem;
  }
  .public-menu-itemdel.styletwo .icon-load-box {
    width: 1rem;
    height: 1rem;
  }
  .public-menu-itemdel.styletwo .load-list {
    grid-gap: 0 0rem;
    min-height: 0.9rem;
    margin: 0rem 0 0 0;
  }
  .public-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 0.02rem solid #E6E6E6;
    font-size: 0.3rem;
    line-height: 0.46rem;
  }
  .public-menu .item-header > * {
    padding: 0 0 0.34rem 0;
    text-align: center;
  }
  .public-menu .list-item {
    margin-bottom: 0;
    background: none;
  }
  .public-menu .list-item.mob-active {
    position: relative;
  }
  .public-menu .list-item.mob-active::after {
    position: absolute;
    bottom: 0;
    content: "";
    left: 0;
    height: 0.04rem;
    background: #110E00;
    width: 100%;
  }
  .public-menu .inner-item {
    padding: 0.19rem 0;
  }
  .public-menu-r .public-menu-title {
    display: none;
  }
  .public-menu-bmbox .public-menu-l {
    min-height: initial;
    padding: 0;
  }
  .public-menu-bmbox .inner {
    padding: 0.4rem 0 1rem;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.5rem 0;
  }
  .load-icon {
    margin: 0.2rem 0 0 0;
    width: 0.6rem;
    height: 0.6rem;
  }
  .icon-load {
    width: 0.34rem;
    height: 0.34rem;
  }
  .load-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.3rem 0.3rem;
  }
  .load-list .inner-item {
    padding: 0.4rem 0.39rem;
    border-radius: 0.1rem;
  }
  .load-list .item-title {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
  .load-list .item-body {
    padding: 0.4rem 0 0 0;
  }
}
.select-tool-filterbox {
  padding: 5.55rem 0 6rem;
}

.select-tool-filter {
  background: #F6F6F6;
  padding: 2rem 4.55rem 2rem;
  border: 1px solid #E6E6E6;
}
.select-tool-filter .title {
  text-align: center;
  color: #666;
  margin: 0 0 1.55rem 0;
}

.public-buttion-link-bm {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 2.4rem;
}
.public-buttion-link-bm .tit-14-22 {
  display: block;
  padding: 0.15rem 0;
  background: var(--mt-global-color-theme-h);
  padding: 0.15rem 0.95rem;
  border-radius: 2.2rem;
  color: var(--mt-global-color-theme);
}

.benmo-filter .form-group-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.2rem clamp(0px, 6.6145833333vw, 127px);
}
.benmo-filter .control-label {
  width: 114px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
  --line-height: if(unitless($lineHeight), 22px, $lineHeight);
  padding: 0;
  margin: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.benmo-filter .form-group {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-bottom: 0;
}
.benmo-filter .form-group-cell {
  -webkit-flex: 1;
          flex: 1;
}
.benmo-filter .form-control {
  height: 1.3rem;
  border-radius: 2.05rem;
  background: #fff;
  font-size: 0.8rem;
  line-height: initial;
  color: #666;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border: 0 !important;
}
.benmo-filter .form-control:focus {
  border: 0;
}

.select-fiter-del {
  margin: 5rem 0 0 0;
}

.select-fiter-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem 1rem;
}
.select-fiter-list > * {
  min-width: 0px;
}
.select-fiter-list .public-buttion-link-bm {
  margin-top: 1.25rem;
}
.select-fiter-list .public-buttion-link-bm .applyData {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.select-fiter-list .public-buttion-link-bm .tit-14-22 {
  padding: 0;
  min-width: 5.6rem;
  height: 1.85rem;
  line-height: 1.85rem;
}
.select-fiter-list .gnull-tips {
  grid-column: span 4;
  color: var(--mt-global-color-theme);
  line-height: initial;
  padding: 1rem 0 0 0;
  min-height: initial;
}
.select-fiter-list .inner-item {
  height: 100%;
  border-radius: 6px;
}
.select-fiter-list .item-title {
  text-align: center;
}
.select-fiter-list .item-body {
  padding: 1.5rem 0 0 0;
}
.select-fiter-list .item-img {
  width: 100%;
  aspect-ratio: 1;
}
.select-fiter-list .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.select-fiter-list .inner-item {
  background: #F5F5F5;
  padding: 1.5rem 2rem;
  display: block;
}

@media (min-width: 992px) {
  .select-fiter-list .inner-item:hover {
    background: var(--mt-global-color-theme-h);
  }
  .public-buttion-link-bm .applyData:hover .tit-14-22 {
    font-weight: 600;
  }
}
@media (max-width: 991.98px) {
  .watch-more-select .tit-14-22 {
    width: 2.6rem;
    min-width: initial;
    margin-left: auto;
    margin-right: auto;
  }
  .select-fiter-del {
    margin: 1rem 0 0 0;
  }
  .select-fiter-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.3rem 0.3rem;
  }
  .select-fiter-list .inner-item {
    padding: 0.5rem 0.55rem;
  }
  .select-fiter-list .item-body {
    padding: 0.3rem 0 0 0;
  }
  .select-fiter-list .item-title {
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  .select-fiter-list .public-buttion-link-bm {
    margin-top: 0.6rem;
  }
  .select-fiter-list .public-buttion-link-bm .tit-14-22 {
    width: 2.8rem;
    height: 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.28rem;
    line-height: 0.8rem;
    margin-left: auto;
    margin-right: auto;
    min-width: initial;
  }
  .select-fiter-list .gnull-tips {
    padding: 0 0 0 0;
  }
  .select-fiter-list .tit-20-33 {
    font-weight: 600;
    font-size: 0.3rem;
    line-height: 0.46rem;
  }
  .public-buttion-link-bm {
    margin: 0.5rem 0 0 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .public-buttion-link-bm .tit-14-22 {
    padding: 0.26rem 0;
    font-size: 0.28rem;
    line-height: 0.28rem;
  }
  .public-buttion-link-bm .applyData {
    width: 100%;
    text-align: center;
  }
  .benmo-filter .form-control {
    height: 0.7rem;
    font-size: 0.28rem;
    padding: 0 0.3rem;
  }
  .benmo-filter .control-label {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin-top: 0.14rem;
    width: 2.5rem;
  }
  .select-tool-filterbox {
    padding: 0.8rem 0 1rem;
  }
  .select-tool-filter {
    padding: 0.6rem 0.4rem;
  }
  .select-tool-filter .form-group-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.3rem 0;
  }
  .select-tool-filter .title {
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-size: 0.36rem;
    line-height: 0.46rem;
  }
}