.row {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.r1 {
  background: linear-gradient(
    180deg,
    rgba(196, 196, 196, 0) 0%,
    rgba(241, 243, 245, 1) 100%
  );
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.r4 {
  background: none;
  padding: 0;
  padding-bottom: 0;
}

.culture-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
}

.culture-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 3;
  pointer-events: none;
}

.culture-section__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/about1/pic3.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.culture-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 40, 90, 0.72) 0%,
    rgba(6, 32, 72, 0.82) 100%
  );
}

.culture-section__head {
  position: absolute;
  z-index: 4;
  top: clamp(0.56rem, 7.5vh, 1rem);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.culture-section__head-inner {
  pointer-events: auto;
}

.culture-section__head .mod-title {
  flex: none;
  width: auto;
  text-align: left;
}

.culture-section__head .mod-title h3 {
  position: relative;
  display: block;
  padding-left: 0.35rem;
  margin: 0 0 0.1rem;
  color: #fff;
  font-size: var(--mod-title-font-size, 0.36rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.culture-section__head .mod-title h3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1246rem;
  height: 0.3266rem;
  background-image: url("../images/mod-hd-icon.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
}

.culture-section__head .subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--font18);
  line-height: 1.6;
  margin-top: 0.08rem;
  text-align: left;
  max-width: 7.2rem;
}

.culture-panels {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.culture-panel {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  cursor: default;
  transition: background-color 0.35s ease;
}

.culture-panel:last-child {
  border-right: 0;
}

.culture-panel__inner {
  box-sizing: border-box;
  flex: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.4rem 0.48rem;
  text-align: center;
}

.culture-panel__icon {
  width: 0.8rem;
  height: 0.8rem;
  margin-bottom: 0.2rem;
  flex-shrink: 0;
}

.culture-panel__icon img,
.culture-panel__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.culture-panel__title {
  color: #fff;
  font-size: var(--font36);
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.culture-panel__desc {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0 0.16rem;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.culture-panel__desc p {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--font18);
  line-height: 2;
  margin: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
}

.culture-panel__desc p + p {
  margin-top: 0.04rem;
}

.culture-panel.is-active,
.culture-panels:hover .culture-panel:hover {
  background: rgba(13, 53, 127, 0.8);
}

.culture-panels:hover .culture-panel.is-active:not(:hover) {
  background: transparent;
}

.culture-panel.is-active .culture-panel__desc,
.culture-panels:hover .culture-panel:hover .culture-panel__desc {
  max-height: 15rem;
  opacity: 1;
  margin-top: 0.16rem;
  padding: 0 0.16rem;
  overflow: visible;
}

.culture-panels:hover .culture-panel.is-active:not(:hover) .culture-panel__desc {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
}

.culture-panel.is-active::after,
.culture-panels:hover .culture-panel:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 168, 232, 1) 0%, rgba(11, 120, 189, 1) 100%);
}

.culture-panels:hover .culture-panel.is-active:not(:hover)::after {
  display: none;
}

@media only screen and (max-width: 767px) {
  .culture-section {
    min-height: 0;
    padding-bottom: 0;
  }

  .culture-section::after {
    display: none;
  }

  .culture-section__head {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding-top: 32px;
    padding-bottom: 12px;
  }

  .culture-section__head .subtitle {
    max-width: none;
  }

  .culture-panels {
    position: relative;
    top: auto;
    bottom: auto;
    flex-direction: column;
    padding: 0 16px 24px;
    gap: 0;
  }

  .culture-panel {
    flex: none;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .culture-panel:last-child {
    border-bottom: 0;
  }

  .culture-panel__inner {
    position: relative;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 36px 14px 16px;
    text-align: left;
  }

  .culture-panel__inner::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
    transition: transform 0.3s ease, margin-top 0.3s ease;
  }

  .culture-panel__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }

  .culture-panel__title {
    flex: 1;
    font-size: 16px;
  }

  .culture-panel:not(.is-active) {
    background: transparent;
  }

  .culture-panel:not(.is-active) .culture-panel__desc {
    display: none;
  }

  .culture-panel:not(.is-active)::after {
    display: none;
  }

  .culture-panel.is-active {
    background: rgba(13, 53, 127, 0.8);
  }

  .culture-panel.is-active .culture-panel__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 16px 24px;
    text-align: center;
  }

  .culture-panel.is-active .culture-panel__inner::after {
    margin-top: -2px;
    transform: rotate(-135deg);
  }

  .culture-panel.is-active .culture-panel__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .culture-panel.is-active .culture-panel__title {
    flex: none;
    width: 100%;
  }

  .culture-panel.is-active .culture-panel__desc {
    max-height: none;
    opacity: 1;
    margin-top: 12px;
    padding: 0 8px;
    display: block;
  }

  .culture-panel.is-active .culture-panel__desc p {
    white-space: normal;
  }

  .culture-panel.is-active::after {
    display: block;
  }
}

.r6 {
  background-image: url("../images/about/bg6.jpg");
  padding-bottom: 1rem;
}

.r6 .mod .mod-hd {
  margin-bottom: 0.32rem;
}

.r6 .mod-hd,
.r6 .flex-box-left {
  display: none;
}

.page-about [id^="div_"] {
  scroll-margin-top: calc(
    var(--global-header-height) + var(--r-localnav-height) + 0.16rem
  );
}

.r7 {
  background-image: url("../images/about/bg7.jpg");
  padding-top: 0.68rem;
  padding-bottom: 0.48rem;
}

.r1 .mod .mod-hd {
  margin-bottom: 0.36rem;
}

.about-intro__flex {
  align-items: stretch;
}

.about-intro__flex .about-intro__pic {
  width: 58%;
  padding-right: 0.48rem;
}

.about-intro__flex .about-intro__content {
  width: 42%;
  padding-left: 0.16rem;
}

.about-intro__pic-inner {
  width: 100%;
  height: 100%;
  min-height: 4.8rem;
  border-radius: 0.1rem;
  overflow: hidden;
}

.about-intro__pic-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__content .mod-hd {
  margin-bottom: 0.28rem;
}

.about-intro__stats {
  margin-top: 0.64rem;
  opacity: 0;
  transform: translate3d(0, 0.16rem, 0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-intro__stats.is-visible {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 767px) {
  .r1 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .about-intro__flex .about-intro__pic,
  .about-intro__flex .about-intro__content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .about-intro__pic {
    margin-bottom: 24px;
  }

  .about-intro__pic-inner {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .about-intro__stats {
    margin-top: 32px;
  }
}

@media only screen and (min-width: 768px) {
  .honor-list {
    --gap: 0.1rem;
    --item-margin-bottom: 0;
  }
}

.honor-area {
  --swiper-navigation-color: #666;
  --swiper-navigation-size: 0.2rem;

  --swiper-pagination-bullet-size: 0.18rem;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 0.05rem;

  position: relative;
  padding: 0.44rem 0 0.92rem;
}

.honor-area .swiper-pagination-bullet {
  box-sizing: border-box;
  border: 1px solid rgba(196, 196, 196, 1);
}

.honor-area .swiper-pagination-bullet-active {
  border-color: var(--swiper-theme-color);
}

.honor-area .swiper-button-next,
.honor-area .swiper-button-prev {
  transition: all 0.3s;
  box-sizing: border-box;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0;
  top: auto;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.honor-area .swiper-button-prev {
  left: auto;
  right: 0.84rem;
}

.honor-area .swiper-button-next:after,
.honor-area .swiper-button-prev:after {
  display: none;
}

.honor-list-item {
  box-sizing: border-box;
  width: 100%;
}

.honor-list-item a {
  display: block;
  width: 100%;
}

.honor-list-item .picArea.center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.r6 .flex-box {
}

.r6 .flex-box-left {
  display: none;
}

.r6 .flex-box-right {
  width: 100%;
  padding-top: 0;
}

@media only screen and (max-width: 767px) {
  .r6 .flex-box-right {
    width: 100%;
    padding-top: 0;
  }
}

.culture-list {
  display: flex;
  flex-wrap: wrap;
}

.culture-list-item {
  position: relative;
}

.culture-list-item .meta {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.culture-list-item .title {
  box-sizing: border-box;
  font-size: var(--font36);
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  border-radius: 0 0.6rem 0 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  margin-bottom: 16px;
}

.culture-list-item .desc {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 0.2rem;
}

@media only screen and (max-width: 767px) {
  .culture-list-item .desc {
    text-align: center;
  }
}

.culture-list-item .pic,
.culture-list-item .pic img {
  border-radius: 0.2rem;
}

.culture-list-item .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.culture-list > li:first-child .culture-list-item .title {
  background: linear-gradient(
    135deg,
    rgba(21, 75, 151, 1) 0%,
    rgba(11, 120, 189, 1) 100%
  );
}

.culture-list > li:nth-child(2) .culture-list-item .title {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 1) 0%,
    rgba(255, 174, 36, 1) 99.578%
  );
}

@media only screen and (min-width: 768px) {
  .culture-list-item .meta {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0.4rem 0.76rem;
  }

  .culture-list-item .title {
    transition: all 0.5s;
    padding: 0.12rem;
    height: 1.38rem;
    width: 4.04rem;
    position: absolute;
  }

  .culture-list-item .desc {
    transition: all 0.5s;
    font-size: var(--font30);
  }

  .culture-list-item:hover .meta {
    transition: all 0.5s !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
  }

  .culture-list-item:hover .title {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }

  .culture-list-item:hover .desc {
    text-align: center;
    font-size: var(--font28);
  }

  .culture-list > li {
    width: 50%;
  }

  .culture-list > li:first-child {
    padding-bottom: 1.48rem;
  }

  .culture-list > li:nth-child(2) {
    padding-top: 1.48rem;
  }

  .culture-list > li:first-child .culture-list-item {
    margin-right: -10%;
  }

  .culture-list > li:nth-child(2) .culture-list-item {
    margin-left: -10%;
  }

  .culture-list > li:nth-child(2) .culture-list-item .meta {
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 1rem;
  }

  .culture-list > li:first-child .culture-list-item .title {
    left: 0;
    bottom: -0.9rem;
  }

  .culture-list > li:nth-child(2) .culture-list-item .title {
    right: 0;
    top: -0.9rem;
  }
}

.r5 {
  position: relative;
}

.r5 .mod {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 0.6rem;
}

@media only screen and (max-width: 767px) {
  .r5 {
    padding-top: 80px;
  }

  .r5 .mod {
    padding-top: 24px;
  }
}

.r2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: linear-gradient(
    180deg,
    rgba(196, 196, 196, 0) 0%,
    rgba(241, 243, 245, 1) 100%
  );
}

.r3 {
  padding-top: 0.68rem;
  padding-bottom: 1.36rem;
  background: linear-gradient(
    180deg,
    rgba(196, 196, 196, 0) 0%,
    rgba(241, 243, 245, 1) 100%
  );
}

.r3 .mod .mod-hd {
  margin-bottom: 0.44rem;
}

.r3 .mod .mod-hd .subtitle {
  --mod-subtitle-font-size: 0.18rem;
  color: rgba(102, 102, 102, 1);
}

@media only screen and (max-width: 767px) {
  .r3 .mod .mod-hd .subtitle {
    --mod-subtitle-font-size: 14px;
  }
}

/* 发展历程 */
.r3 .history-wrap {
  position: relative;
  width: 100%;
}

.r3 .history-main-area {
  position: relative;
  margin-bottom: 0.4rem;
}

.r3 .history-main-swiper {
  overflow: hidden;
  width: 100%;
}

.r3 .history-main-swiper .swiper-wrapper {
  align-items: stretch;
}

.r3 .history-main-swiper .swiper-slide {
  width: 100% !important;
  height: auto;
  box-sizing: border-box;
}

.r3 .history-main-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.r3 .history-card .flex-box-left.history-card_pic {
  height: 4.8rem;
  padding: 0;
  border-radius: 0.2rem;
  overflow: hidden;
  background: #e8edf2;
}

.r3 .history-card .flex-box-right.history-card_body {
  padding: 0.2rem 0 1.4rem 0.8rem;
  position: relative;
  min-width: 0;
}

.r3 .history-card_pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r3 .history-card_watermark {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(232, 232, 232, 1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.r3 .history-detail-swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.r3 .history-detail-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.r3 .history-detail-swiper.swiper-initialized .swiper-slide {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.r3 .history-detail-swiper.swiper-initialized .swiper-slide-active {
  opacity: 1;
}

.r3 .history-card_title {
  margin: 0 0 0.2rem;
  color: var(--main-color);
  font-size: var(--font36);
  font-weight: 700;
}

.r3 .history-card_desc {
  margin: 0;
  color: rgba(102, 102, 102, 1);
  font-size: var(--font18);
  line-height: 2;
  margin-bottom: 0.2rem;
}

/* 发展历程：共用控制区（页码 + Swiper 箭头） */
.r3 .history-card_ctrl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.24rem;
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 0.28rem;
  z-index: 2;
  box-sizing: border-box;
  padding-left: 0.8rem;
  pointer-events: none;
}

.r3 .history-card_ctrl > * {
  pointer-events: auto;
}

.r3 .history-card_pagination {
  position: relative;
  z-index: 3;
}

.r3 .history-card_index {
  display: inline-flex;
  align-items: baseline;
  font-size: var(--font14);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.r3 .history-card_current {
  font-size: var(--font20);
  font-weight: 500;
  color: var(--main-color);
}

.r3 .history-card_sep {
  margin: 0 0.04rem;
  color: rgba(102, 102, 102, 0.65);
}

.r3 .history-card_count {
  color: rgba(102, 102, 102, 1);
  font-weight: 500;
}

.r3 .history-card_arrows {
  display: flex;
  align-items: center;
  gap: 0.24rem;
}

.r3 .history-card_pagination {
  display: block;
}

.r3 .history-card_pagination,
.r3 .history-card_arrows {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.1rem);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  pointer-events: none;
}

.r3 .history-card_ctrl.has-multi .history-card_pagination,
.r3 .history-card_ctrl.has-multi .history-card_arrows {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.r3 .history-card_ctrl.is-ctrl-leaving .history-card_pagination,
.r3 .history-card_ctrl.is-ctrl-leaving .history-card_arrows {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.1rem);
  pointer-events: none;
}

.r3 .history-card_ctrl.has-multi .history-card_arrows {
  display: flex;
}

.r3 .history-card_ctrl .swiper-button-next,
.r3 .history-card_ctrl .swiper-button-prev {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  box-sizing: border-box;
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  background: transparent;
  color: var(--main-color);
  transition: border-color 0.3s, color 0.3s, opacity 0.3s;
}

.r3 .history-card_ctrl .swiper-button-next:after,
.r3 .history-card_ctrl .swiper-button-prev:after {
  font-size: var(--font16);
  font-weight: 700;
}

.r3 .history-card_ctrl .swiper-button-next:hover:not(.swiper-button-disabled),
.r3 .history-card_ctrl .swiper-button-prev:hover:not(.swiper-button-disabled) {
  border-color: var(--main-color);
  color: var(--main-color);
}

.r3 .history-card_ctrl .swiper-button-next.swiper-button-disabled,
.r3 .history-card_ctrl .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* 底部年份时间轴 */
.r3 .history-timeline {
  padding-top: 0.12rem;
}

.r3 .history-timeline_inner {
  position: relative;
  width: 100%;
}

.r3 .history-timeline_hd {
  margin-bottom: 0.36rem;
}

.r3 .history-timeline_line {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 1px;
  background: rgba(200, 200, 200, 1);
}

.r3 .history-timeline_bar {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.48rem;
  height: 4px;
  border-radius: 2px;
  background: var(--main-color);
  transform: translate(-50%, -50%);
  transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.r3 .history-timeline_hd .swiper-button-next,
.r3 .history-timeline_hd .swiper-button-prev {
  flex-shrink: 0;
  width: 0.3rem;
  height: 0.3rem;
  margin: 0;
  border: none;
  background: transparent;
  color: rgba(153, 153, 153, 1);
  transition: color 0.3s, opacity 0.3s;
  top: auto;
  bottom: 0;
}

.r3 .history-timeline_hd .swiper-button-next:after,
.r3 .history-timeline_hd .swiper-button-prev:after {
  font-size: var(--font28);
  font-weight: 700;
}

.r3 .history-timeline_hd .swiper-button-next:hover:not(.swiper-button-disabled),
.r3 .history-timeline_hd .swiper-button-prev:hover:not(.swiper-button-disabled) {
  color: var(--main-color);
}

.r3 .history-timeline_hd .swiper-button-next.swiper-button-disabled,
.r3 .history-timeline_hd .swiper-button-prev.swiper-button-disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.r3 .history-years-swiper {
  overflow: hidden;
  padding-left: 1rem;
  padding-right: 1rem;
}

.r3 .history-years-swiper .swiper-slide {
  width: auto;
  cursor: pointer;
}

.r3 .history-years-swiper .swiper-slide span {
  display: block;
  padding: 0 0.4rem;
  font-size: var(--font20);
  color: rgba(102, 102, 102, 1);
  transition: color 0.35s, font-weight 0.35s;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.r3 .history-years-swiper .swiper-slide-thumb-active span {
  color: var(--main-color);
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  .r3 .history-card_watermark {
    font-size: 1.2rem;
  }

  .r3 .history-card_title {
    font-size: var(--font28);
  }
}

@media only screen and (max-width: 767px) {
  .r3 .history-card_desc {
    max-width: none;
  }

  .r3 .history-card_ctrl {
    left: 0;
    padding-left: 0;
  }

  .r3 .history-card .flex-box-right.history-card_body {
    padding-bottom: 1.4rem;
  }

  .r3 .history-timeline_hd {
    margin-bottom: 0.2rem;
  }

  .r3 .history-years-swiper .swiper-slide span {
    font-size: 14px;
    padding: 0 12px 6px;
  }

  .r3 .history-years-swiper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .r3 .history-timeline_hd .swiper-button-next,
  .r3 .history-timeline_hd .swiper-button-prev {
    bottom: 4px;
    width: 24px;
    height: 24px;
    background-color: #f2f4f6;
  }
}

.video-item {
  position: relative;
}

.video-play-icon {
  position: absolute;
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ctitle%3EPlay_40x40%3C%2Ftitle%3E%3Cpath%20d%3D%22M20%20.833a19.167%2019.167%200%201%200%2019.167%2019.167%2019.167%2019.167%200%200%200-19.167-19.167z%22%20opacity%3D%22.6%22%2F%3E%3Cpath%20d%3D%22M20%202a18%2018%200%201%201-18%2018%2018.02%2018.02%200%200%201%2018-18m0-2a20%2020%200%201%200%2020%2020%2020%2020%200%200%200-20-20zm8.072%2020.9a1.671%201.671%200%200%201-.513.513l-9.99%206.357a1.671%201.671%200%200%201-2.569-1.413v-12.715a1.671%201.671%200%200%201%202.569-1.41l9.99%206.358a1.671%201.671%200%200%201%20.513%202.31z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E);
  background-position: -50px 0;
  height: 50px;
  width: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}

.about-info {
  color: rgba(102, 102, 102, 1);
  line-height: 2;
  font-size: var(--font20);
  margin-bottom: 0;
}

.about-info p + p {
  margin-top: 0.16rem;
}

@media only screen and (min-width: 768px) {
  .statistic-list {
    --gap: 0.24rem;
    --item-margin-bottom: 0;
  }
  .statistic-list {
    width: 50%;
  }
}

.statistic-list {
  width: 70%;
}

.statistic-list > li {
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  margin-bottom: 0 !important;
}

.statistic {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;

  border: 1px solid rgba(207, 218, 225, 1);
  border-radius: 0.16rem;
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(33, 67, 131, 0.05);
  background: rgba(255, 255, 255, 1);
  padding: 0.32rem 0.12rem;
}

.statistic > div {
  min-width: 70%;
}

.statistic-title {
  color: rgba(51, 51, 51, 1);
  font-size: var(--font20);
  transition: all 0.3s;
  margin-bottom: 0.12rem;
}

.statistic-content {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.statistic-content-value {
  transition: all 0.3s;
  font-weight: bold;
  font-size: var(--font60);
  color: var(--main-color);
}

.statistic-content-suffix {
  font-size: var(--font20);
  color: rgba(51, 51, 51, 1);
}

.statistic:hover {
  border: 1px solid rgba(207, 218, 225, 1);
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(33, 67, 131, 0.05);
  background: linear-gradient(
    128.8deg,
    rgba(10, 77, 154, 1) 1.812%,
    rgba(11, 120, 189, 1) 94.332%
  );
}

.statistic:hover .statistic-title,
.statistic:hover .statistic-content-value,
.statistic:hover .statistic-content-suffix {
  color: rgba(255, 255, 255, 1);
}

.r1 .statistic-list {
  width: 100%;
  --gap: 0.24rem;
  --item-margin-bottom: 0;
}

.r1 .statistic-list > li {
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
}

.r1 .statistic {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid rgba(221, 221, 221, 1);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 0 0.24rem;
  height: auto;
}

.r1 .statistic > div {
  min-width: 0;
  width: 100%;
}

.r1 .statistic-content {
  display: flex;
  align-items: baseline;
  gap: 0.06rem;
  line-height: 1;
  color: #2b4c7e;
}

.r1 .statistic-content-value {
  font-weight: 700;
  font-size: var(--font48);
  color: inherit;
}

.r1 .statistic-content-suffix {
  font-size: var(--font20);
  font-weight: 700;
  color: inherit;
}

.r1 .statistic-title {
  flex: 1;
  color: rgba(102, 102, 102, 1);
  font-size: var(--font16);
  margin-top: 0.12rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.r1 .statistic:hover {
  border: 0;
  border-bottom: 1px solid rgba(221, 221, 221, 1);
  box-shadow: none;
  background: transparent;
}

.r1 .statistic:hover .statistic-title,
.r1 .statistic:hover .statistic-content-value,
.r1 .statistic:hover .statistic-content-suffix {
  color: inherit;
}

@media only screen and (max-width: 767px) {
  .r1 .statistic-list > li {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 24px !important;
  }

  .r1 .statistic-list > li:nth-last-child(-n + 2) {
    margin-bottom: 0 !important;
  }

  .r1 .statistic-content-value {
    font-size: 32px;
  }

  .r1 .statistic-content-suffix {
    font-size: 16px;
  }

  .r1 .statistic-title {
    font-size: 14px;
  }
}

.r7 .title-area {
  border-bottom: 1px solid rgba(200, 200, 200, 1);
  margin-bottom: 0.36rem;
  padding-bottom: 0.2rem;
}

.r7 .title-area .title {
  color: var(--main-color);
  font-size: var(--font36);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.r7 .title-area .subtitle {
  color: rgba(102, 102, 102, 1);
  font-size: var(--font18);
}

.r7 .mod {
  --mod-subtitle-font-size: 0.18rem;
  --mod-subtitle-color: rgba(102, 102, 102, 1);
}

@media only screen and (max-width: 767px) {
  .r7 .mod {
    --mod-subtitle-font-size: 14px;
  }

  .r7 .mod .mod-hd .subtitle {
    margin-bottom: 20px;
  }
}

.r7 .mod .mod-hd {
  margin-bottom: 0.44rem;
}

.r7 .mod .mod-hd .subtitle {
  margin-top: 0.32rem;
}

.r7 .desc {
  border-radius: 0.05rem;
  background: linear-gradient(90deg, rgba(0, 124, 196, 1) 0%, rgba(8, 64, 141, 1) 100%);
  padding: 0.16rem 0.4rem;
  color: rgba(255, 255, 255, 1);
  font-size: var(--font18);
  line-height: 2;
  margin-bottom: 0.4rem;
}

.r7 .tabs-tabpane .desc table,
.r7 .tabs-tabpane .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.r7 .tabs-tabpane .desc table th,
.r7 .tabs-tabpane .desc table td,
.r7 .tabs-tabpane .table-wrapper table th,
.r7 .tabs-tabpane .table-wrapper table td {
  padding: 0.12rem 0.2rem;
  text-align: center;
  vertical-align: middle;
  color: inherit;
  font-size: var(--font16);
}

.r7 .tabs-tabpane .desc table tr th,
.r7 .tabs-tabpane .desc table tr td,
.r7 .tabs-tabpane .table-wrapper table tr th,
.r7 .tabs-tabpane .table-wrapper table tr td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.tabs-tabpane .desc table tr:last-child td {
  border-bottom: 0 none;
}
.r7 .tabs-tabpane .desc table tr:first-child th,
.r7 .tabs-tabpane .desc table tr:first-child td,
.r7 .tabs-tabpane .table-wrapper table tr:first-child th,
.r7 .tabs-tabpane .table-wrapper table tr:first-child td {
  font-weight: 700;
}

.tabs-nav-list {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.tabs-nav-list li {
  transition: all 0.3s;
  cursor: pointer;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  border-radius: 998px;
  color: rgba(51, 51, 51, 1);
  font-weight: 700;
  font-size: var(--font18);
  padding: 0.09rem 0.48rem;
  line-height: 1.5;
}

.tabs-nav-list .active {
  background-color: var(--main-color);
  color: #fff;
}

.tabs-content .tabs-tabpane {
  display: none;
}

@media only screen and (min-width: 768px) {
  .cert-list {
    --gap: 0.18rem;
    --item-margin-bottom: 0.2rem;
  }
}

.cert-list-item {
  position: relative;
}

.cert-list-item .pic {
  box-sizing: border-box;
  width: 100%;
  height: 3.04rem;
  overflow: hidden;
  border-radius: 0.5rem 0 0.5rem 0;
  box-shadow: 0.05rem 0.05rem 0.1rem 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.32rem 0.56rem 0.52rem;
}

.cert-list-item .pic img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cert-list-item .meta {
  transition: all 0.3s;
  box-sizing: border-box;
  padding: 0.16rem 0.12rem;
}

.cert-list-item .title {
  font-size: var(--font18);
  color: rgba(51, 51, 51, 1);
  text-align: center;
}

.cert-list-item:hover img {
  transform: scale(1.1);
}

@media only screen and (max-width: 767px) {
  .r7 .tabs-tabpane .desc:has(table),
  .r7 .tabs-tabpane .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .r7 .tabs-tabpane .desc table,
  .r7 .tabs-tabpane .table-wrapper table {
    min-width: 9rem;
    width: max-content;
  }

  .r7 .tabs-tabpane .desc table th,
  .r7 .tabs-tabpane .desc table td,
  .r7 .tabs-tabpane .table-wrapper table th,
  .r7 .tabs-tabpane .table-wrapper table td {
    padding: 12px 10px;
    font-size: 14px;
  }

  .tabs-nav-list {
    flex-wrap: wrap;
  }

  .tabs-nav-list li {
    width: 100%;
  }

  .honor-list,
  .honor-area,
  .cert-list {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .honor-list > li {
    padding: 0;
  }

  .cert-list-item .meta {
    padding-top: 12px;
  }
}
