.about-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.about-hero-section .hero-bg .img-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-section .hero-bg .hero-content {
  width: 1280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 10;
}
.about-hero-section .hero-bg .hero-content img {
  margin-bottom: 43px;
}
.about-hero-section .hero-bg .hero-content span {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}
.about-hero-section .hero-bg .hero-content span::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-color: #3666FE;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  right: -39px;
}
.about-hero-section .hero-bg .hero-content .title-butn {
  padding-top: 115px;
  display: flex;
  align-items: center;
}
.about-hero-section .hero-bg .hero-content .title-butn .title {
  font-size: 18px;
  color: #fff;
  margin-right: 45px;
}
.zhanwang-section {
  width: 100%;
  margin: 0 auto;
  padding: 111px 0;
  padding-bottom: 120px;
}
.zhanwang-section .zhanwang-content {
  width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}
.zhanwang-section .header-group {
  margin-bottom: 79px;
}
.zhanwang-section .header-group .main-title {
  font-size: 46px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  /*display: flex;*/
  align-items: baseline;
}
.zhanwang-section .header-group .main-title::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #FFD700;
  border-radius: 50%;
  margin-left: 13px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
.zhanwang-section .header-group .description {
  font-size: 20px;
  color: #050505;
  line-height: 1.8;
}
.zhanwang-section .header-group .description .highlight {
  color: #002EA6;
  font-weight: 700;
  font-size: 20px;
}
.zhanwang-section .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.zhanwang-section .content-wrapper .stats-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  height: 402px;
  padding-left: 70px;
}
.zhanwang-section .content-wrapper .stats-list .stat-item .stat-value {
  color: #002EA6;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}
.zhanwang-section .content-wrapper .stats-list .stat-item .stat-value .num {
  font-size: 48px;
  font-weight: 700;
  font-family: BOLD;
}
.zhanwang-section .content-wrapper .stats-list .stat-item .stat-value .unit {
  font-size: 20px;
  font-weight: 500;
  margin-left: 4px;
}
.zhanwang-section .content-wrapper .stats-list .stat-item .stat-label {
  font-size: 18px;
  color: #050505;
}
.zhanwang-section .content-wrapper .video-cover-wrapper {
  position: relative;
  width: 680px;
  height: 402px;
  overflow: hidden;
  border-radius: 50px;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  background-color: rgba(0, 46, 166, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn img {
  width: 20px;
  height: 24px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn::before,
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  box-sizing: border-box;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn::before {
  animation: ripple-dashed 2s linear infinite;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn::after {
  animation: ripple-dashed 2s linear infinite;
  animation-delay: 1.25s;
}
.zhanwang-section .content-wrapper .video-cover-wrapper:hover .cover-img {
  transform: scale(1.05);
}
.zhanwang-section .content-wrapper .video-cover-wrapper:hover .play-btn {
  background-color: #002ea6;
}
.zhanwang-section .content-wrapper .video-cover-wrapper:hover .play-btn svg {
  color: #fff;
}
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.video-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.video-modal .modal-content {
  position: relative;
  width: 80%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.video-modal .modal-content video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
}
.video-modal .modal-content .close-btn {
  position: absolute;
  top: -40px;
  right: -10px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s;
}
.video-modal .modal-content .close-btn:hover {
  transform: rotate(90deg);
  color: #002EA6;
}
.core-advantage-section {
  padding: 124px 0;
  padding-bottom: 107px;
  width: 100%;
  display: flex;
  justify-content: center;
  background: #F2F7FF;
}
.core-advantage-section .container {
  width: 1280px;
  margin: 0 auto;
}
.core-advantage-section .section-header {
  margin-bottom: 114px;
}
.core-advantage-section .section-header .title {
  font-size: 40px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 30px;
}
.core-advantage-section .section-header .subtitle {
  font-size: 20px;
  color: #050505;
}
.core-advantage-section .section-header .subtitle .highlight {
  font-size: 22px !important;
  color: #002EA6;
  font-weight: bold;
}
.core-advantage-section .card-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}
.core-advantage-section .card-grid .card-item {
  min-width: 302px;
  height: 760px;
  border-radius: 20px;
  position: relative;
  background-color: transparent;
  transition: all 0.3s;
  padding-bottom: 30px;
}
.core-advantage-section .card-grid .card-item .normal-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 25px 0px rgba(220, 220, 220, 0.4);
  display: flex;
  border-radius: 50vw 50vw 70px 70px;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  transition: transform 1.1s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s;
  transform: translateY(0);
  opacity: 1;
}
.core-advantage-section .card-grid .card-item .normal-layer .card-img,
.core-advantage-section .card-grid .card-item .normal-layer .card-title,
.core-advantage-section .card-grid .card-item .normal-layer .feature-list {
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.core-advantage-section .card-grid .card-item .normal-layer .card-img {
  width: 302px;
  height: 302px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 22px;
  flex-shrink: 0;
  transform: translateY(0) scale(1);
  opacity: 1;
}
.core-advantage-section .card-grid .card-item .normal-layer .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.core-advantage-section .card-grid .card-item .normal-layer .card-title {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  transform: translateY(0);
  opacity: 1;
  text-align: left;
  width: 100%;
  padding: 0 20px;
}
.core-advantage-section .card-grid .card-item .normal-layer .feature-list {
  list-style: none;
  transform: translateY(0);
  opacity: 1;
  padding: 0 20px;
  width: 100%;
}
.core-advantage-section .card-grid .card-item .normal-layer .feature-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 18px;
  color: #050505;
}
.core-advantage-section .card-grid .card-item .normal-layer .feature-list li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #002EA6;
  border-radius: 50%;
}
.core-advantage-section .card-grid .card-item .normal-layer .feature-list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  opacity: 0.15;
  background: #002EA6;
  border-radius: 50%;
}
.core-advantage-section .card-grid .card-item .normal-layer .feature-list li .highlight {
  color: #002EA6;
  font-weight: bold;
}
.core-advantage-section .card-grid .card-item .hover-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #002EA6;
  color: #fff;
  padding: 40px 30px;
  transform: translateY(100%);
  transition: transform 1.1s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.core-advantage-section .card-grid .card-item .hover-layer .hover-content {
  width: 100%;
}
.core-advantage-section .card-grid .card-item .hover-layer .hover-content .card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
}
.core-advantage-section .card-grid .card-item .hover-layer .hover-content .feature-list {
  list-style: none;
}
.core-advantage-section .card-grid .card-item .hover-layer .hover-content .feature-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.core-advantage-section .card-grid .card-item .hover-layer .hover-content .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
}
.core-advantage-section .card-grid .card-item .hover-layer .hover-content .feature-list li .highlight {
  color: #fcdb00;
  font-weight: bold;
}
.core-advantage-section .card-grid .card-item:hover {
  background-color: transparent;
  box-shadow: none;
}
.core-advantage-section .card-grid .card-item:hover .hover-layer {
  transform: translateY(0);
}
.core-advantage-section .card-grid .card-item:hover .normal-layer {
  transform: translateY(50%);
  opacity: 0;
}
.global-capacity-section {
  width: 100%;
  padding-top: 143px;
  background-color: #fff;
  position: relative;
  padding-bottom: 138px;
}
.global-capacity-section .img_fox {
  position: absolute;
  right: 0;
  top: 0;
}
.global-capacity-section .img_fox img {
  width: 218px;
  height: 422px;
  object-fit: cover;
}
.global-capacity-section .container {
  width: 1280px;
  margin: 0 auto;
}
.global-capacity-section .section-header {
  margin-bottom: 144px;
}
.global-capacity-section .section-header .title {
  font-size: 40px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 30px;
}
.global-capacity-section .section-header .desc {
  font-size: 20px;
  color: #050505;
  line-height: 1.6;
}
.global-capacity-section .map-stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
  position: relative;
}
.global-capacity-section .map-stats-wrapper .stats-column {
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.global-capacity-section .map-stats-wrapper .stats-column .stat-item {
  margin-bottom: 66px;
}
.global-capacity-section .map-stats-wrapper .stats-column .stat-item .label {
  font-size: 18px;
  color: #050505;
  margin-bottom: 10px;
}
.global-capacity-section .map-stats-wrapper .stats-column .stat-item .value-group {
  color: #000;
  line-height: 1;
}
.global-capacity-section .map-stats-wrapper .stats-column .stat-item .value-group .num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: BOLD;
}
.global-capacity-section .map-stats-wrapper .stats-column .stat-item .value-group .unit {
  font-size: 20px;
  margin-left: 11px;
  font-weight: 400;
  color: #050505;
  vertical-align: baseline;
}
.global-capacity-section .map-stats-wrapper .map-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.global-capacity-section .features-grid {
  display: flex;
  justify-content: space-between;
  padding: 0 75px;
}
.global-capacity-section .features-grid .feature-card {
  width: 350px;
  padding-bottom: 30px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 0px 25px 0px rgba(220, 220, 220, 0.4);
  transition: all 0.3s ease;
  cursor: default;
}
.global-capacity-section .features-grid .feature-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #fff;
  margin-top: 68px;
}
.global-capacity-section .features-grid .feature-card .card-title {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin-bottom: 25px;
}
.global-capacity-section .features-grid .feature-card .card-desc {
  font-size: 18px;
  color: #5E6770;
  line-height: 1.8;
  text-align-last: center;
  padding: 0 48px;
}
.global-capacity-section .features-grid .feature-card:hover {
  background-color: #002EA6;
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(10, 54, 157, 0.3);
}
.global-capacity-section .features-grid .feature-card:hover .icon-circle {
  background-color: #fff;
  color: #002EA6;
}
.global-capacity-section .features-grid .feature-card:hover .card-title {
  color: #fff;
}
.global-capacity-section .features-grid .feature-card:hover .card-desc {
  color: rgba(255, 255, 255, 0.8);
}
.strength-section {
  position: relative;
  width: 100%;
  padding: 128px 0 100px;
  overflow: hidden;
  background: #F2F7FF;
}
.strength-section .flex_jb {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.15;
}
.strength-section .bg-trophy-watermark {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.strength-section .bg-trophy-watermark img {
  width: 100%;
  display: block;
}
.strength-section .container {
  width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.strength-section .text-content {
  margin-bottom: 120px;
}
.strength-section .text-content .main-title {
  font-size: 40px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 30px;
}
.strength-section .text-content .desc-block {
  margin-bottom: 25px;
}
.strength-section .text-content .desc-block .sub-title {
  font-size: 20px;
  color: #050505;
  font-weight: 700;
  margin-bottom: 10px;
}
.strength-section .text-content .desc-block p {
  font-size: 20px;
  color: #050505;
  line-height: 1.8;
  text-align: justify;
}
.strength-section .full-image-wrapper {
  width: 100%;
}
.strength-section .full-image-wrapper .full-img {
  /*width: 100%;*/
  height: auto;
  display: block;
}
.learn-more-section {
  padding-top: 140px;
  width: 100%;
}
.learn-more-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.learn-more-section .section-title {
  font-size: 40px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 70px;
  text-align: left;
}
.learn-more-section .circle-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.learn-more-section .circle-grid .circle-card {
  display: block;
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 46, 166, 0.1);
  transition: box-shadow 0.3s ease;
}
.learn-more-section .circle-grid .circle-card .img-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.learn-more-section .circle-grid .circle-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.learn-more-section .circle-grid .circle-card .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(10, 54, 157, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease;
}
.learn-more-section .circle-grid .circle-card .overlay-content .card-title {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.learn-more-section .circle-grid .circle-card .overlay-content .icon-arrow {
  width: 20px;
  height: 16px;
  transition: transform 0.4s ease;
}
.learn-more-section .circle-grid .circle-card .overlay-content .icon-arrow img {
  width: 100%;
  height: 100%;
}
.learn-more-section .circle-grid .circle-card:hover {
  box-shadow: 0 15px 40px rgba(10, 54, 157, 0.3);
}
.learn-more-section .circle-grid .circle-card:hover .img-box img {
  transform: scale(1.1);
}
.learn-more-section .circle-grid .circle-card:hover .overlay-content {
  background-color: rgba(10, 54, 157, 0.4);
}
.learn-more-section .circle-grid .circle-card:hover .icon-arrow {
  transform: translateX(10px);
}
.mouse-scroll-icon {
  position: relative;
  width: 25px;
  height: 35px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  box-sizing: border-box;
}
.mouse-scroll-icon .wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouse-bob 1.9s infinite ease-in-out;
}
@keyframes mouse-bob {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
