body { font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif; background: linear-gradient(135deg, #e6f0ff 0%, #f7fafd 100%); min-height: 100vh; overflow-x: hidden; }
html { overflow-x: hidden; }
.navbar { 
  background: transparent; 
  backdrop-filter: blur(0px);
  box-shadow: none;
  border-bottom: none;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  padding: 1rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.0rem;
  border-radius: 9999px;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  max-width: 100%;
  margin: 0 auto;
}
.navbar.scrolled .navbar-inner {
  background: rgba(37, 99, 235, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.5s ease;
  flex: 1;
  min-width: 0;
}
.navbar-brand-icon {
  display: none;
}
.navbar-brand img { 
  height: 44px;
  transition: all 0.5s ease;
}
.navbar-brand-logo {
  height: 44px;
  transition: all 0.5s ease;
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0.75rem;
  transition: all 0.5s ease;
  flex: 1;
  min-width: 0;
}
.navbar-brand-text .brand-main {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  /* text-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 0 20px rgba(0,0,0,0.2); */
  transition: all 0.5s ease;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar.scrolled .navbar-brand-text .brand-main {
  color: #fff;
  text-shadow: 
    0 1px 3px rgba(0,0,0,0.3),
    0 0 8px rgba(0,0,0,0.2);
}
.navbar-brand-text .brand-sub {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3), 0 0 15px rgba(0,0,0,0.2);
  transition: all 0.5s ease;
  margin-top: 2px;
}
.navbar.scrolled .navbar-brand-text .brand-sub {
  color: #fff;
  opacity: 0.9;
  text-shadow: 
    -0.5px -0.5px 0 rgba(0,0,0,0.5),
    0.5px -0.5px 0 rgba(0,0,0,0.5),
    -0.5px 0.5px 0 rgba(0,0,0,0.5),
    0.5px 0.5px 0 rgba(0,0,0,0.5),
    0 1px 8px rgba(0,0,0,0.4),
    0 0 15px rgba(0,0,0,0.3);
}
.nav-link { 
  color: rgba(255, 255, 255, 0.9) !important; 
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  margin-right: 0.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: none;
  border: none;
  text-decoration: none;
  display: inline-block;
}
.nav-link:hover {
  color: #fff !important;
}
.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  border-radius: 9999px;
  transition: opacity 0.3s ease;
}
.nav-link:hover::before {
  opacity: 1;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #ffd700, #ffb300);
  opacity: 0;
  filter: blur(2px);
  transition: all 0.3s ease;
}
.nav-link:hover::after {
  width: 33.333%;
  opacity: 1;
}
.nav-link.active::after {
  width: 33.333%;
  opacity: 1;
}
.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  height: 40px;
  width: 40px;
  padding: 0.5rem !important;
  margin: 0 !important;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-cta-btn {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffd700 0%, #ffb300 100%);
  color: #2563eb;
  border: none;
  transition: all 0.5s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}
.navbar-cta-btn:hover {
  background: linear-gradient(90deg, #ffb300 0%, #ffd700 100%);
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}
.navbar.scrolled .navbar-cta-btn {
  background: linear-gradient(90deg, #ffd700 0%, #ffb300 100%);
  color: #2563eb;
}
.navbar.scrolled .navbar-cta-btn:hover {
  background: linear-gradient(90deg, #ffb300 0%, #ffd700 100%);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}
.hero { position: relative; 
  /* background: linear-gradient(120deg, #0052d9 40%, #1890ff 60%);  */
  /* color: #fff; padding: 150px 0 100px 0; text-align: center; overflow: hidden;  */
  color: #fff; 
  padding: 0px 0 0px 0; text-align: center; overflow: hidden; 
}
.hero-bg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 0; 
  /* background: url('https://assets-global.website-files.com/5f6b7b7b7b7b7b7b7b7b7b7b/63e3e3e3e3e3e3e3e3e3e3e3_lines.svg') center/cover no-repeat;  */
  background: url('static/images/hero_bg0.webp') center/cover no-repeat; 
  opacity: 0.9; 
  pointer-events: none; }
.hero-content { position: relative; z-index: 1; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.hero-logo { width: 10vw; height: 10vw; background: rgba(255,255,255,0.13); border-radius: 50%; margin: 0 auto 18px auto; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 32px rgba(37,99,235,0.13); }
.hero-logo img { width: 8vw; height: 8vw; }
.hero-title { font-size: 2.6rem; font-weight: bold; margin-bottom: 18px; letter-spacing: 2px; }
.hero-desc { font-size: 1.1rem; margin-bottom: 32px; }
.hero-btn { background: linear-gradient(90deg, #ffd700 0%, #ffb300 100%); color: #2563eb; font-weight: 700; border: none; border-radius: 32px; padding: 12px 36px; font-size: 1.1rem; box-shadow: 0 2px 12px rgba(37,99,235,0.08); transition: background .2s, color .2s; }
.hero-btn:hover { background: #fffbe6; color: #ffb300; }
.glass-card { background: rgba(255,255,255,0.85); border-radius: 18px; box-shadow: 0 4px 24px rgba(37,99,235,0.10); padding: 32px 24px; margin-bottom: 32px; backdrop-filter: blur(4px); border: 1px solid rgba(37,99,235,0.06); transition: box-shadow .2s, transform .2s; }
.glass-card:hover { box-shadow: 0 8px 32px rgba(37,99,235,0.18); transform: translateY(-4px) scale(1.01);}
.section-title { font-size: 2rem; font-weight: 700; color: #2563eb; margin-bottom: 24px; letter-spacing: 1px;}
.section-title-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.section-title-text {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin: 0;
  letter-spacing: 1px;
}
.section-title-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
  margin: 0 1rem;
}
.section-title-en {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2563eb;
}
.scroll-x { overflow-x: auto; white-space: nowrap; }
.scroll-x > .card { display: inline-block; min-width: 260px; margin-right: 18px; vertical-align: top;}
.news-list .list-group-item { border: none; border-bottom: 1px solid #f0f0f0; background: transparent;}
.partner-logos-grid img { max-height: 50px; max-width: 100%; }
.honors { display: flex; gap: 24px; flex-wrap: wrap; }
.honor-card { background: #f5f8ff; border-radius: 10px; padding: 16px 20px; min-width: 180px; box-shadow: 0 2px 8px rgba(37,99,235,0.06);}
.team-list { display: flex; gap: 18px; flex-wrap: wrap; }
.team-member { text-align: center; width: 120px; }
.team-member img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; margin-bottom: 8px;}
.qrcode { width: 90px; border-radius: 8px; }
.footer { background: rgba(37, 99, 235, 0.85); color: #fff; padding: 32px 0 16px 0; text-align: center; }
.footer-links { margin: 10px 0; }
.footer-links a { color: #ffd700; margin: 0 8px; font-size: 1rem; }
.card {
  /* --bs-card-border-color: rgba(13, 110, 253, 0.25); */
  --bs-card-border-color: transparent;
  background: rgb(245, 248, 255);
  border-radius: 30px;
}
.hero-cert-img {
  height: 100px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
  object-fit: contain;
}
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0 !important;
  }
  .navbar-brand {
    gap: 0.5rem;
    max-width: calc(100% - 60px);
  }
  .navbar-brand-logo { 
    height: 32px !important; 
    flex-shrink: 0;
  }
  .navbar-brand-text {
    margin-left: 0.5rem;
    max-width: calc(100vw - 120px);
  }
  .navbar-brand-text .brand-main { 
    font-size: 0.85rem !important; 
    max-width: 100%;
  }
  .navbar-brand-text .brand-sub { 
    font-size: 0.5rem !important; 
  }
  .navbar-cta-btn {
    display: none;
  }
  .navbar-toggler-icon,
  .navbar-toggler-icon-custom {
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 30 30\'%3E%3Cpath stroke=\'rgba(255,255,255,0.8)\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' d=\'M4 7h22M4 15h22M4 23h22\'/%3E%3C/svg%3E');
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
  }
  .navbar-collapse {
    background: transparent;
  }
  /* PC端完全隐藏移动端菜单 */
  @media (min-width: 992px) {
    #navbarNav,
    .navbar-collapse {
      display: none !important;
      visibility: hidden !important;
      height: 0 !important;
      overflow: hidden !important;
    }
  }
  @media (max-width: 991px) {
    .navbar-collapse {
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 12px;
      background: rgba(37, 99, 235, 0.8);
      backdrop-filter: blur(10px);
    }
    .navbar.scrolled .navbar-collapse {
      background: rgba(37, 99, 235, 0.8);
    }
    .navbar-collapse .nav-link {
      color: rgba(255, 255, 255, 0.95) !important;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      text-shadow: 
        -0.5px -0.5px 0 rgba(0,0,0,0.5),
        0.5px -0.5px 0 rgba(0,0,0,0.5),
        -0.5px 0.5px 0 rgba(0,0,0,0.5),
        0.5px 0.5px 0 rgba(0,0,0,0.5),
        0 1px 6px rgba(0,0,0,0.4),
        0 0 12px rgba(0,0,0,0.3);
    }
    .navbar-collapse .nav-link:last-child {
      border-bottom: none;
    }
    .navbar-collapse .nav-link:hover {
      color: #ffd700 !important;
      text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    }
  }
  .hero-title { font-size: 1.5rem; }
  .section-title { font-size: 1.6rem; }
  .section-title-text { font-size: 1.6rem !important; }
  .section-title-modern {
    flex-wrap: wrap;
  }
  .section-title-line {
    display: none !important;
  }
  .section-title-en {
    font-size: 0.65rem;
  }
  .glass-card { padding: 18px 8px; }
  .hero-cert-img { height: 20vw; width: 20vw; }
  .hero-logo { width: 16vw; height: 16vw; }
  .hero-logo img { width: 12vw; height: 12vw; }
  /* 1. 移动端缩小环形解决方案模块 */
  #solution { 
    transform: scale(0.6);
    margin: -50px 0;
    display: none;
  }
  #solution .section-title-text {
    font-size: 1.4rem !important;
  }
  #solution .section-title-modern {
    margin-bottom: 15px !important;
  }
  #solution .container {
    padding: 0 10px;
  }
  /* 只让Banner第二页团队成员横向滚动 */
  .hero-team-list {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 12px !important;
    display: none !important;
  }
  .hero-team-list .team-member {
    width: 70px;
  }

  .hero .carousel-item {
    max-height: 560px !important;
  }
}
.custom-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 30px; /* 或你想要的高度 */
  /* padding: 8px 16px; */
}
.card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
}
.card-body .card-title {
  margin-bottom: 20px;
  padding-top: 10px;
}
.card-body .card-text {
  flex: 1 1 auto;
}
.card-body .btn {
  margin-top: auto;
  margin-bottom: 0px;
  /* max-width: 100px; */
}
@keyframes logo-breath-glow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0px 0px #1890ff88, 0 0 0px 0px #ffd70044;
  }
  50% {
    transform: scale(1.13);
    box-shadow: 0 0 32px 8px #1890ff88, 0 0 16px 4px #ffd70044;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0px 0px #1890ff88, 0 0 0px 0px #ffd70044;
  }
}
.hero-logo {
  animation: logo-breath-glow 2.2s ease-in-out infinite;
  border-radius: 50%;
  background: transparent;
}
.hero .carousel-item {
  padding: 150px 0 100px 0;
  min-height: 420px;
  max-height: 660px;
}
.business-card {
  position: relative;
  overflow: visible;
  background: #f5f8ff;   /* 你喜欢的背景色 */
  border: none !important;
  box-shadow: none !important; /* 如需无阴影 */
}
.business-icon-wrapper {
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  z-index: 2;
}
.business-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.18), 0 2px 8px rgba(0,0,0,0.08);
  background: #fff;
  object-fit: contain;
  border: 4px solid #f5f8ff;
}
.card-body.pt-5 {
  padding-top: 48px !important;
}
@keyframes round-rotate {
  0% { transform: translate(-50%,-50%) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg); }
}
#round-arcs-img {
  animation: round-rotate 20s linear infinite;
}

.hero-bg2 {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: url('static/images/banner2_bg.png') center center/cover no-repeat;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.banner2-icon {
  width: 15vw;
  height: auto;
  z-index: 2;
}

.banner2-text-box {
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.banner2-books-row {
  z-index: 2;
  margin-bottom: 32px;
}

.banner2-book {
  width: 30vw;
  height: auto;
}

/* 温和的浮动动画效果 */
@keyframes gentle-float {
  0%, 100% {
    transform: translateY(10px);
    opacity: 1;
  }
  50% {
    transform: translateY(-0px);
    opacity: 0.9;
  }
}

.solution-item {
  animation: gentle-float 4s ease-in-out infinite;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.solution-item:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.05);
  text-shadow: 0 0 15px currentColor;
  color: #2563eb !important;
}

.banner2-logo {
  width: 15vw;
  height: auto;
  margin: 0 10vw 0 10vw;
}

@media (max-width: 768px) {
  .hero-content {
    min-height: 320px !important;
  }
  .banner2-icon {
    width: 30vw;
  }
  .banner2-title {
    font-size: 1.5rem !important;
  }
  .banner2-desc {
    font-size: 1.1rem !important;
  }
  .banner2-book {
    width: 48px;
    max-width: 18vw;
    display: none;
  }
  .banner2-logo {
    width: 25vw;
  }
  .banner2-books-row {
    margin-bottom: 16px;
  }
}

/* 核心团队卡片样式 */
.team-cards-row {
  margin-top: 2rem;
}
.team-card {
  position: relative;
  height: 650px;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 80px rgba(37, 99, 235, 0.25);
}
.team-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 1.5s ease;
}
.team-card:hover .team-card-bg {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 99, 235, 0.95) 0%, rgba(37, 99, 235, 0.2) 50%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.7s ease;
}
.team-card:hover .team-card-overlay {
  opacity: 1;
}
.team-card-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 40px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(24px);
  transition: all 1s ease;
}
.team-card:hover .team-card-info {
  transform: translateY(0);
}
.team-card-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}
.team-card-title {
  font-size: 0.56rem;
  font-weight: 900;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 8px 0 0 0;
  background: rgba(37, 99, 235, 0.05);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}
.team-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.5s ease;
  flex-shrink: 0;
}
.team-card:hover .team-card-icon {
  background: #2563eb;
  color: #fff;
  border-color: transparent;
}
.team-card-icon i {
  font-size: 1.2rem;
}
.team-card-desc {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.3s;
}
@media (max-width: 768px) {
  .team-card {
    height: 500px;
    border-radius: 30px;
  }
  .team-card-info {
    bottom: 20px;
    left: 15px;
    right: 15px;
    padding: 15px;
    border-radius: 30px;
  }
  .team-card-name {
    font-size: 1.25rem;
  }
  .team-card-title {
    font-size: 0.5rem;
  }
  .team-card-desc {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* About Graphic Animations */
@keyframes nodeGlow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.1), inset 0 -2px 10px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), inset 0 2px 15px rgba(255, 255, 255, 0.15), inset 0 -2px 15px rgba(0, 0, 0, 0.3);
  }
}
@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .about-graphic {
    height: 400px !important;
  }
  .central-node {
    width: 8rem !important;
    height: 8rem !important;
  }
  .orbit-1 {
    width: 240px !important;
    height: 240px !important;
  }
  .orbit-2 {
    width: 320px !important;
    height: 320px !important;
  }
  .orbit-3 {
    width: 400px !important;
    height: 400px !important;
  }
  .section-title {
    font-size: 1.75rem !important;
  }
  .section-description {
    font-size: 1rem !important;
  }
}


/* 内联样式提取的CSS类 */
.container-full { max-width: 100%; padding-left: 1rem; padding-right: 1rem; }
.navbar-inner-container { width: 100%; max-width: 1400px; margin: 0 auto; }
.nav-gap { gap: 0.25rem; }
.navbar-toggler-custom { border: none; background: transparent; }
.hero-section { min-height: 420px; position: relative; overflow: hidden; display: flex; align-items: center; }
.carousel-inner-min { min-height: 420px; }
.hero-logo-img { padding-left: 4px; padding-top: 4px; }
.hero-content-min { min-height: 420px; }
.banner2-desc-text { font-size: 1.1rem; }
.banner2-title-text { font-size: 2.6rem; font-weight: bold; }
.team-member-title { font-size: 0.9em; color: #fff; }
.partner-img { height: 38px; }
.partner-logo-img { max-height: 50px; }
.partner-name { font-size: 0.98rem; color: #666; }
.honor-icon { color: #2563eb; font-size: 1.5rem; }
.solution-container { min-height: 400px; display: flex; align-items: center; justify-content: center; }
.solution-wrapper { position: relative; max-width: 96vw; height: 520px; display: flex; align-items: center; justify-content: center; }
.round-arcs-img { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(0deg); width: 310px; height: 310px; z-index: 0; pointer-events: none; }
.solution-content { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; width: 600px; height: 310px; }
.solution-row { display: flex; justify-content: space-between; align-items: center; position: absolute; }
.solution-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 240px; height: 240px; background: radial-gradient(circle at 50% 50%, #2a79fa 0%, #336cdf 100%); border-radius: 50%; box-shadow: 0 8px 40px 0 rgba(37,99,235,0.13); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 1; }
.solution-center-text { color: #fff; font-size: 1.4rem; font-weight: 600; line-height: 1.3; text-align: center; margin-top: 10px; }
.solution-center-btn { background: #fff; color: #2563eb; font-weight: 700; border: none; border-radius: 32px; padding: 10px 36px; font-size: 1.15rem; box-shadow: 0 4px 16px rgba(37,99,235,0.13); }
.solution-arrow { margin-top: 18px; }
.report-container { position: relative; max-width: 800px; margin: 0 auto; min-height: 620px; }
.report-circle { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 340px; height: 340px; z-index: 2; }
.report-logo-wrapper { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 2; }
.report-logo-img { width: 90px; height: 90px; object-fit: contain; margin-bottom: 10px; }
.report-company-name { font-size: 1.3rem; font-weight: 600; color: #2563eb; letter-spacing: 2px; }
.report-company-sub { font-size: 1rem; font-weight: 400; color: #666; }
.report-svg { position: absolute; left: 0; top: 0; z-index: -1; }
.report-purpose-title { color: #2563eb; }
.about-graphic-wrapper { position: relative; height: 500px; width: 100%; display: flex; align-items: center; justify-content: center; overflow: visible; }
.about-glow { position: absolute; width: 12rem; height: 12rem; background: radial-gradient(circle, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.05), transparent); border-radius: 50%; z-index: 1; }
.central-node-wrapper { position: relative; z-index: 10; width: 10rem; height: 10rem; background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.8), rgba(37, 99, 235, 0.9), rgba(30, 58, 138, 0.95)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; box-shadow: 0 0 30px rgba(37, 99, 235, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.1), inset 0 -2px 10px rgba(0, 0, 0, 0.2); animation: nodeGlow 4s ease-in-out infinite; }
.node-border-wrapper { position: absolute; inset: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; }
.node-text-wrapper { position: relative; z-index: 10; font-size: 1.25rem; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); }
.orbit-wrapper { position: absolute; border-radius: 50%; }
.orbit-1-wrapper { width: 300px; height: 300px; border: 1px solid rgba(147, 197, 253, 0.3); animation: orbitRotate 20s linear infinite; }
.orbit-2-wrapper { width: 420px; height: 420px; border: 1px solid rgba(147, 197, 253, 0.25); animation: orbitRotate 30s linear infinite; }
.orbit-3-wrapper { width: 540px; height: 540px; border: 1px solid rgba(147, 197, 253, 0.2); animation: orbitRotate 40s linear infinite; }
.satellite-wrapper { position: absolute; top: 50%; right: -0.75rem; transform: translateY(-50%); width: 1.5rem; height: 1.5rem; background: #1e3a8a; border: 1px solid rgba(59, 130, 246, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.satellite-dot { width: 0.5rem; height: 0.5rem; background: rgba(59, 130, 246, 0.8); border-radius: 50%; }
.connecting-lines-wrapper { position: absolute; inset: 0; background: linear-gradient(to top right, rgba(251, 191, 36, 0.1), transparent); mix-blend-mode: overlay; border-radius: 50%; filter: blur(24px); }
.business-ambience-wrapper { position: absolute; inset: 0; pointer-events: none; }
.ambience-orb-1 { position: absolute; top: 5rem; right: 0; width: 800px; height: 800px; background: rgba(34, 211, 238, 0.1); border-radius: 50%; filter: blur(120px); transform: translateX(50%); pointer-events: none; }
.ambience-orb-2 { position: absolute; bottom: 0; left: 0; width: 600px; height: 600px; background: rgba(59, 130, 246, 0.1); border-radius: 50%; filter: blur(120px); transform: translateX(-33.333%); pointer-events: none; }
.business-container { position: relative; z-index: 1; }
.section-title-margin { margin-bottom: 50px; }
.service-flow-desc { font-size: 1.25rem; font-weight: bold; }
.service-flow-container { overflow-x: auto; }
.service-step { min-width: 120px; }
.service-step-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px; margin-bottom: 10px; position: relative; }
.service-step-icon svg { position: absolute; left: 0; top: 0; }
.service-step-text { margin-top: 2px; font-weight: 500; }
.service-arrow { font-size: 2rem; color: #bbb; }
.case-img { max-height: 220px; object-fit: cover; }
.query-img { height: 100px; }
.footer-title { font-size: 1.1rem; font-weight: 500; }
.footer-link-gold { color: #ffd700; }
.footer-address { margin-top: 8px; }
.footer-qrcode { margin: 10px 0; }
.footer-qrcode-img { height: 100px; width: auto; }
.footer-copyright { margin-top: 8px; font-size: 0.95rem; color: #b0c4de; }
.badge-max-width { max-width: 280px; }
.hero-honor-badges .custom-badge { max-width: 220px; line-height: 1.3; padding: 0.45em 0.75em; }
.partner-grid-max { max-width: 520px; }
