.section-title {
  margin: 0;
  font-family: "Source Han Serif SC", "STSong", serif;
  font-size:36px;
  text-align: center;
}

.section-subtitle {
  margin: 55px 0 0;
  font-size: var(--subtitle-size);
  text-align: center;
  color: var(--navy);
  font-weight: 500;
}

.section-desc {
  max-width: 930px;
  margin: 25px auto 0;
  font-size: var(--copy-size);
  text-align: center;
  color: #4f566b;
}

.section-mini {
  margin: 0 0 24px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  color: #121212;
  text-align: center;
  font-family: 'Source Han Serif SC';
}

.hero {
  position: relative;
  height: 650px;
  z-index: 1;
  /* padding-top: 45%; */
  /* background: url("./assets/banner.png")  center  / cover no-repeat; */

}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("./assets/banner.png")  center -1px / 100% 100% no-repeat;
 
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 650px;
}

.hero-copy {
  max-width: 360px;
  text-align: center;
  color: #ffffff;
  transform: translateY(-8px);
}

.hero h1 {
  margin: 0;
  font-family: "fa", "STSong", serif;
  font-size: 70px;
  font-weight: 400;
}

.hero-subtitle {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  font-family: 'Source Han Serif SC';
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 141px;
  height: 45px;
  margin-top: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
}

.stats-card {
  position: absolute;
  left: 50%;
  bottom: -83px;
  width: min(1117px, calc(100% - 48px));
  height: 166px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.05);
  transform: translateX(-50%);
  z-index: 10;
}

.stat {
  position: absolute;
  color: var(--navy);
}

.stat strong {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  font-weight: 700;
}

.stat-number {
  font-family: "DINOT-Bold", "Arial Narrow", sans-serif;
  font-size: 65px;
  line-height: 1;
  font-weight: 400;
}

.stat-unit {
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-label {
  position: absolute;
  display: block;
  font-size: 18px;
  line-height: 24px;
  white-space: nowrap;
  font-family: 'Source Han Serif SC';
  /* color: #969aa3; */
}

.stat-first {
  top: 25px;
  left: 100px;
  width: 94px;
  height: 108px;
}

.stat-first .stat-label {
  top: 78px;
  left: 29px;
  left: 50%;
  transform: translateX(-50%);
}

.stat-second {
  top: 25px;
  left: 381px;
  width: 94px;
  height: 108px;
}

.stat-second .stat-label {
  top: 79px;
  left: 1px;
}

.stat-third {
  top: 25px;
  left: 628px;
  width: 144px;
  height: 108px;
}

.stat-third strong {
  left: 31px;
}

.stat-third .stat-label {
  top: 78px;
  left: 0;
}

.stat-fourth {
  top: 25px;
  left: 891px;
  width: 174px;
  height: 108px;
}

.stat-fourth .stat-label {
  top: 79px;
  left: 32px;
}

.stat-divider {
  position: absolute;
  width: 7px;
  height: 115px;
  background:
    linear-gradient(var(--navy), var(--navy)) center top / 1px 50px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center bottom / 1px 50px no-repeat;
}

.divider-first {
  top: 19px;
  left: 276px;
}

.divider-second {
  top: 23px;
  left: 562px;
}

.divider-third {
  top: 23px;
  left: 837px;
}

.stat-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54px;
  width: 5px;
  height: 5px;
  background: var(--navy);
  transform: translateX(-50%) rotate(45deg);
}

.services-band {
  position: relative;
  margin-top: 84px;
  padding: 110px 0 48px;
  z-index: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 214px);
  /* grid-template-columns: 190px repeat(3,auto); */

  column-gap: 115px;
  row-gap: 0;
  align-items: start;
}

.service-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 123px;
  width: 100%;
  padding: 0 2px;
  font-size: 24px;
  line-height: 1.35;
  color: #B99047;
  text-align: center;
  font-weight: 500;
}

.service-pill::before,
.service-pill::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 51px;
  background: var(--service-icon) center / contain no-repeat;
  transform: translateY(-50%);
}

.service-pill::before {
  left: 4px;
}

.service-pill::after {
  right: 4px;
  transform: translateY(-50%) scaleX(-1);
}

.challenge-section {
  position: relative;
  padding: 110px 0 0;
  overflow: hidden;
  background: url('./assets/home.png')
  center / cover    no-repeat;

}

.challenge-section::before {
  
  /* content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 780px;
  /* height: 760px; */
  /* background: url('./assets/home.png')
    center top / 100%    no-repeat;
  pointer-events: none;  */
}

.challenge-section > .container,
.challenge-stage {
  position: relative;
  z-index: 1;
}

.challenge-section .section-title {
  margin-bottom: 30px;
  color: #121212;
  font-family: 'Source Han Serif SC';
  font-size: 36px;
}

.challenge-stage {
  position: relative;
  height: 582px;
  overflow: hidden;
  background: transparent;
}

.challenge-bg {
  display: none;
}

.challenge-inner {
  position: relative;
  height: 100%;
  width: 1300px;
}

.challenge-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 61px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--navy);
  font-size: 22px;
  /* font-weight: 600; */
  box-shadow: 0 10px 24px rgba(16, 55, 160, 0.08);
}

.challenge-tag.left.top { top: 75px; left: 112px; }
.challenge-tag.left.upper { top: 200px; left: -10px; }
.challenge-tag.left.mid { top: 316px; left: 112px; }
.challenge-tag.center.bottom { left: 34%; bottom: 79px; transform: translateX(-50%); }
.challenge-tag.right.top { top: 75px; right: 89px; }
.challenge-tag.right.upper { top: 200px; right: 0; }
.challenge-tag.right.bottom { right: 89px; top: 316px; }

.solution-section {
  padding: 110px 0 0;
}

.solution-visual {
  margin-top: 66px;
  overflow: hidden;
  position: relative;
}

.solution-track {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.solution-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.solution-slide.is-active {
  opacity: 1;
}

.solution-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-top: 0px;
  opacity: 0;
}

.solution-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 55, 160, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.solution-dots button.is-active {
  background: #1037a0;
  transform: scale(1.1);
}

.showcase-section {
  padding: 110px 0 0;
}

.showcase-card {
  display: grid;
  align-items: center;
}

.showcase-card.guidance-card {
  grid-template-columns: 260px 1fr;
  gap: 64px;
  height: 610px;
  /* background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.76)),
    url("https://www.figma.com/api/mcp/asset/86c65887-7f51-41a4-959c-e6aacf47282e") center / cover no-repeat; */
}

.showcase-card.training-card {
  grid-template-columns: 1fr 320px;
  gap: 68px;
  height: 610px;
  /* margin-top: 110px; */
  background: #ffffff;
  color: var(--text-dark);
}

.showcase-copy h3 {
  margin: 0 0 25px;
  font-size: var(--subtitle-size);
  line-height: 1.35;
  color: #1037A0;
  font-size: 30px;
  font-weight: 600;
}

.showcase-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: inherit;
  color: #777777;
}

.showcase-copy .lead {
  margin-bottom: 14px;
  font-size: var(--copy-size);
  line-height: 1.5;
  color:#121212
}

.guidance-copy {
  align-self: center;
  max-width: 231px;
}

.guidance-copy p {
  line-height: 2.05;
}

.training-copy {
  align-self: center;
  max-width: 320px;
}



.guidance-visual {
  position: relative;
  min-height: 472px;
}

.guidance-panel-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 717px;
  height: 472px;
}

.training-panel-wrap {
  left: 0;
  right: auto;
}

.guidance-blue-panel {
  position: absolute;
  inset: 0;
  background: #1037a0;
  border-radius: 6px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.guidance-blue-panel2{
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.guidance-carousel {
  position: absolute;
  right: 0;
  top: 50%;
  width: 803px;
  overflow: hidden;
  transform: translateY(-50%);
}

.training-carousel {
  left: 0;
  right: auto;
}

.guidance-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: guidance-scroll 38s linear infinite;
}

.guidance-slide {
  flex: 0 0 355px;
  width: 355px;
  height: 240px;
  overflow: hidden;
  background: #ffffff;
}

.guidance-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guidance-dots {
  position: absolute;
  left: 50%;
  bottom: 35px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.training-dots {
  left: 358px;
}

.guidance-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.guidance-dots span.is-active {
  width: 34px;
  background: #ffffff;
}

@keyframes guidance-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1110px); }
}

.news-section {
  min-width: 1200px;
  padding: 25px 0 71px;
  background: #1037a0;
  margin-top: 110px;
  position: relative;
  &::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    content: '';
    background-image: url(./assets/dot.png);
    background-position: center;
    background-size: 100% 100%;
    height: 243px;
    background-repeat: no-repeat;
    z-index:0;
  }
}

.news-head {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.news-head .section-title {
  color: #ffffff;
}

.news-more {
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 18px;
  line-height: 40px;
  color: #ffffff;
}

.news-container {
  min-width: 1200px;
  margin-top: 59px;
  position: relative;

  z-index: 50;
}

.news-layout {
  /* display: grid;
  grid-template-columns: 472px 1fr; */
  gap: 70px;
  align-items: start;
  width: 1200px;
  margin: 0 auto;
  z-index: 999;
}

.news-feature {
  color: #ffffff;
}

.news-image {
  overflow: hidden;
  width: 472px;
  height: 250px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature h3 {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
}

.news-list {
  width: 655px;
  margin: 0 auto;
}

.news-list.is-loading,
.news-list.is-empty,
.news-list.is-error {
  min-height: 220px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 21px 16px;
  min-height: 59px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  a{
    color: white;
  }
}

.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  font-size: 12px;
  line-height: 30px;
}

.news-tag.alt {
  /* border-color: var(--gold);
  color: var(--gold); */
}

.partners-section {
  position: relative;
  padding: 0 0 0;
  background: #ffffff;
}

.partner-cloud {
  display: grid;
  grid-template-columns: repeat(6, 177px);
  grid-auto-rows: 78px;
  gap: 23px 18px;
  align-items: stretch;
  justify-content: center;
  /* background: url("./assets/map2.png");
  background-position: center -137px;
  background-repeat: no-repeat;
  background-size: 1007px 839px; */
  min-height: 535px;
  /* margin-top: 94px; */
  margin-top: 88px;
  /* padding: 0px 0 47px; */
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 177px;
  height: 78px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  line-height: 20px;
  color: #111111;
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.partner-card::after{
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 23px;
  height: 2px;
  content: '';
  background: #1037A0;
  transform: translateX(-50%);
}

.partners-note {
  /* margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: #777777;
  text-align: center; */
  margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.5;
    color: #777777;
    text-align: center;
    margin-top: -100px;
    height: auto;
    overflow: hidden;
    margin-bottom: 91px;
}

.partners-section .section-title {
  margin-top: 110px;
}

  .partners-section {
    overflow: hidden;
    isolation: isolate;
    padding: 110px 0 84px;
    /* min-height: calc(100vw * 866 / 1440); */
    box-sizing: border-box;
    background: #ffffff;
  }

  .partners-section::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: url("./assets/map3.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    z-index: -1;
  }

  .partners-section .container {
    position: relative;
    z-index: 1;
  }

  .partners-section .section-title {
    margin-top: 0;
  }

  .partner-cloud {
    margin-top: 62px;
    min-height: auto;
  }

  .partners-note {
    margin: 20px 0 0;
    color: #8f949f;
    margin-bottom: 0;
  }

.partner-cta-section {
  /* padding: 20px 0 40px;
  background: #ffffff; */
  margin-top: 31px;
}

.partner-cta-card {
  display: flex;
  align-items: center;
  width: 1152px;
  height: 94px;
  /* border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(16, 55, 160, 0.08); */
  /* box-shadow: 0 12px 32px rgba(16, 55, 160, 0.08); */
  background: url("./assets/footer-logo.png")  center / 100% 100% no-repeat;
  overflow: hidden;
  box-sizing: border-box;
}

.partner-cta-lead {
  display: flex;
  align-items: center;
  width: 392px;
  padding: 0 0px 0 43px;
  /* background: url("./assets/footer-logo.png") left center / 100% 100% no-repeat; */
  box-sizing: border-box;
  flex: 0 0 auto;
}

.partner-cta-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 20px;
  flex: 0 0 auto;
}

.partner-cta-mark img {
  display: block;
  width: 34px;
  height: 34px;
}

.partner-cta-copy {
  color: #ffffff;
}

.partner-cta-copy h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  font-family: 'Source Han Serif SC';
}

.partner-cta-copy p {
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.partner-cta-features {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 18px 0 0px;
}

.partner-cta-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  flex: 1 1 0;
  padding: 0 28px;
  box-sizing: border-box;
}

.partner-cta-feature + .partner-cta-feature {
  border-left: 1px solid rgba(16, 55, 160, 0.12);
}

.partner-cta-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #1037a0;
  flex: 0 0 auto;
}

.partner-cta-feature-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-cta-feature-copy {
  min-width: 0;
}

.partner-cta-feature-copy h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  color: #111111;
}

.partner-cta-feature-copy p {
  margin: 6px 0 0;
  font-size: 12px;
  color: #7d7d7d;
  white-space: nowrap;
}

.home-footer-bar {
  min-width: 1440px;
  height: 78px;
  background: #00142e;
}

.home-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.home-footer-records,
.home-footer-links {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 12px;
  line-height: 17px;
}

.home-footer-records {
  justify-content: flex-start;
  gap: 20px;
}

.home-footer-links {
  justify-content: flex-end;
  gap: 31px;
}

.home-footer-records span,
.home-footer-records a,
.home-footer-links a {
  min-height: auto;
  /* padding: 0; */
  color: #ffffff;
  white-space: nowrap;
}
.home-footer-records a img{
  display: inline-block;
  width: 17px;
  margin-right: 8px;
}

.home-footer-links a:hover,
.home-footer-records a:hover {
  color: rgba(255, 255, 255, 0.82);
}

.home-footer-links a:first-child {
  padding-left: 0;
}

.home-footer-links a::after,
.home-footer-records > *::after {
  display: none;
}
