.section-block {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* 通用 section 淡入动效 - fadeInUp 效果 */
  /* 只有添加 .section-fade-enabled 后才启用动画（由 JS 添加） */
  /* 排除 logo-wall 组件，避免影响其样式 */
  .section-block.section-fade-enabled .section-container > .section-title,
  .section-block.section-fade-enabled .section-container > .section-desc,
  .section-block.section-fade-enabled .section-container > .section-body:not(.section-body-logo-wall) {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .section-block.section-fade-enabled.section-visible .section-container > .section-title,
  .section-block.section-fade-enabled.section-visible .section-container > .section-desc,
  .section-block.section-fade-enabled.section-visible .section-container > .section-body:not(.section-body-logo-wall) {
    opacity: 1;
    transform: translateY(0);
  }

  /* 依次延迟出现 */
  .section-block.section-fade-enabled.section-visible .section-container > .section-title {
    transition-delay: 0.05s;
  }
  .section-block.section-fade-enabled.section-visible .section-container > .section-desc {
    transition-delay: 0.15s;
  }
  .section-block.section-fade-enabled.section-visible .section-container > .section-body:not(.section-body-logo-wall) {
    transition-delay: 0.25s;
  }
  
  /* scroll effect base */
  .scrollfx {
    will-change: transform, border-radius;
  }
  
  /* roundlift: 跟手滚动效果（参考 MIUI 14 / ClickUp）
     transform 和 borderRadius 由 JS 实时控制，实现跟手效果 */
  .scrollfx-roundlift {
    border-radius: 0;
    overflow: hidden;
    position: relative;
  }
  
  
/* 
   ==========================================================================
   通用防闪烁 (Anti-Flash)
   配合 pageRuntime.js 使用：初始隐藏 Footer，JS 渲染完后添加 .fc-page-loaded 显示
   
   注意：此规则仅对包含 #sections-root 的页面生效（即使用 pageRuntime 的页面）
   传统模板页面（下载页、新闻页等）不受影响，因为它们没有 #sections-root 容器
   ========================================================================== 
*/
body:not(.fc-page-loaded):has(#sections-root) .component-footer-lead,
body:not(.fc-page-loaded):has(#sections-root) footer,
body:not(.fc-page-loaded):has(#sections-root) .footer {
    opacity: 0 !important;
    pointer-events: none;
}

/* 防御：隐藏部分浏览器扩展（Plasmo）注入的克隆节点，避免偶发白块/留白 */
[id^="__plasmo_clone__"] {
  display: none !important;
}

.component-footer-lead,
footer,
.footer {
    transition: opacity 0.4s ease-in;
}

.scrollfx-roundlift .section-container {
    position: relative;
    z-index: 1;
}
  
  .scrollfx-roundlift .section-bg-img {
    /* 背景图片跟手缩放 */
    will-change: transform, border-radius;
  }
  
  .scrollfx-roundlift .section-container {
    padding: 120px 0 120px;
  }

  /* section-body 级别的 roundlift 效果 */
  .section-body.scrollfx-roundlift {
    overflow: hidden;
    position: relative;
    will-change: transform, border-radius;
    transition: transform 0.1s linear, border-radius 0.1s linear;
  }

  .section-body.scrollfx-roundlift > * {
    /* 内部元素跟手缩放圆角 */
    will-change: border-radius;
    transition: border-radius 0.1s linear;
  }

  .section-body.scrollfx-roundlift > img,
  .section-body.scrollfx-roundlift > .section-body-bg {
    /* 背景图片跟手缩放 */
    will-change: transform, border-radius;
    transition: transform 0.1s linear, border-radius 0.1s linear;
  }
  
  /* 确保内部图片容器也有正确的样式 */
  .section-body.scrollfx-roundlift .global-network-img,
  .section-body.scrollfx-roundlift > div:first-child {
    overflow: hidden;
    will-change: border-radius;
    transition: border-radius 0.1s linear;
  }
  
  .section-body.scrollfx-roundlift img {
    display: block;
    width: 100%;
  }
  
  /* section 背景图片容器 - 用于 roundlift 跟手缩放 */
  .section-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    border-radius: inherit;
  }

  .section-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s linear, border-radius 0.1s linear;
  }

  /* 纯颜色背景 - 用于 roundlift 跟手缩放 */
  .section-bg-color {
    width: 100%;
    height: 100%;
    will-change: transform, border-radius;
    transition: transform 0.1s linear, border-radius 0.1s linear;
  }

  /* section 内容层级在背景图之上 */
  .section-block.section-has-bg .section-container {
    position: relative;
    z-index: 1;
  }

  .section-block.section-has-bg {
    position: relative;
  }
  
  
  .section-container {
    width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
  }

/* full-bleed section: allow certain blocks (e.g. marquee) to span full viewport width */
.section-block.full-bleed {
  overflow: hidden;
  position: relative;
}

.section-block.full-bleed .section-container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Break full-bleed body out to 100vw */
.section-block.full-bleed .section-body {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  left: 0;
}
  
  .spacing-top-none { padding-top: 0; }
  .spacing-top-m { padding-top: 60px; }
  .spacing-top-l { padding-top: 120px; }
  .spacing-bottom-none { padding-bottom: 0; }
  .spacing-bottom-m { padding-bottom: 60px; }
  .spacing-bottom-l { padding-bottom: 120px; }
  
  .section-title {
    font-size: 44px;
    line-height: normal;
    font-weight: 700;
    color: #101C2F;
    margin: 0 0 20px;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  
  .section-desc {
    font-size: 20px;
    font-weight: normal;
    line-height: 32px;
    color: #101C2F;
    margin: 0 0 40px;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  
  .section-body {
    font-size: 16px;
    line-height: normal;
    color: #1f2733;
  }
  
  /* 通用 hover 上滑动效：只要配置 class 带 hover-lift 即可生效 */
  .hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
  }
  
  .hover-lift:hover {
    transform: translateY(-10px);
  }

  /* ------------------------------------------------------------
   * Generic content list / card grid
   * Use `.fc-card-grid` + `.fc-card` for new pages.
   * Backward compatible with legacy CSP core-demands classes:
   * `.core-demands-cards` + `.demand-card`
   * ------------------------------------------------------------ */
  .fc-card-grid,
  .core-demands-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }

  @media (max-width: 1200px) {
    .fc-card-grid,
    .core-demands-cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    .fc-card-grid,
    .core-demands-cards {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }

  .fc-card,
  .demand-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 28, 47, 0.08);
    box-shadow:
      0px 40px 32px rgba(12, 18, 55, 0.05),
      0px 10px 16px rgba(0, 0, 0, 0.08),
      0px 2px 4px rgba(12, 18, 55, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .fc-card:hover,
  .demand-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0px 60px 48px rgba(12, 18, 55, 0.06),
      0px 16px 22px rgba(0, 0, 0, 0.10),
      0px 2px 6px rgba(12, 18, 55, 0.03);
  }

  /* Title / desc naming differs across templates; support both */
  .fc-card .fc-card-title,
  .fc-card .card-title,
  .demand-card .fc-card-title,
  .demand-card .card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: #101C2F;
    margin: 0 0 12px;
  }

  .fc-card .fc-card-desc,
  .fc-card .card-desc,
  .demand-card .fc-card-desc,
  .demand-card .card-desc {
    font-size: 14px;
    line-height: 24px;
    color: rgba(16, 28, 47, 0.70);
    margin: 0;
  }

  .fc-card .fc-card-icon,
  .fc-card .card-icon,
  .demand-card .fc-card-icon,
  .demand-card .card-icon {
    /* position: absolute; */
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(10, 100, 250, 0.10); */
    pointer-events: none;
  }

  .fc-card .fc-card-icon img,
  .fc-card .card-icon img,
  .demand-card .fc-card-icon img,
  .demand-card .card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
  }

  /* ------------------------------------------------------------
   * Generic content card styles (通用内容卡片)
   * 适用于各类场景的卡片展示，支持旧类名 section1-card 向后兼容
   * ------------------------------------------------------------ */
  .content-card {
    flex: 1;
    background: linear-gradient(0deg, #EEF2FA, #EEF2FA), linear-gradient(0deg, #F0F2F7, #F0F2F7), linear-gradient(0deg, #FFFFFF, #FFFFFF), #223140;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .content-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .content-card-icon img,
  .section1-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .content-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #101C2F;
    margin-bottom: 12px;
    line-height: 30px;
  }

  .content-card-desc,
  .section1-card-desc {
    font-size: 16px;
    color: rgba(16, 28, 47, 0.72);
    line-height: 1.6;
    flex: 1;
    white-space: pre-line;
  }
  
  /* banner block */
  .banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* background: linear-gradient(101deg, #f5f7fb 0%, #eef3ff 100%); */
   
    padding-bottom: 0px;
    height: 700px;
  }
  #banner::after {    
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0.95) 85%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1000;
}

  .banner-left {
    flex: 1;
    max-width: 800px;
    padding-top: 40px;
  }
  .banner-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    /* max-width: 400px; */
    /* transform: translateX(50%); */
    /* width: 640px; */
    /* width: 920px;
    height: 480px; */
    width: 640px;
    min-height: 500px;
  }
  .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    /* height: 550px; */
    /* max-height: 550px; */
    /* width: 100%;
    height: 100%; */
    /* object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    position: relative; */
    /* transform: translateX(40%); */
    /* z-index: 2;
    position: absolute;
    top: 0;
    left: 0; */
    
  }

  /* Full mode: 完整显示图片，不裁剪 */
  .banner-mode-full .banner-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 640px;
    min-height: 500px;
  }
  
  .banner-mode-full .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .banner-mode-full .banner-title {
    margin-top: 0; /* 标题顶部对齐，移除上边距 */
  }
  .banner .section-container {
    min-width: 1280px;
    max-width: 100%;
    text-align: center;
    /* margin-top: 200px; */
  }
  .banner-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* gap: 60px; */
    padding: 160px 0 0px;
    /* margin-top: -20%; */
  }
 
  .banner-title {
    font-size: 52px;
    line-height: normal;
    font-weight: 700;
    color: #101C2F;
    margin:0 0 24px;
    text-align: left !important;
    white-space: pre-line;
  }
  
  .banner-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 20px;
    text-align: left !important;
    white-space: pre-line; /* 支持 \n 换行 */
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 600px;
    
  }
.content-card-bottom-img {
    width: 183.32px;
    height: 144px;
    margin: 40px auto 0;
}
  
  .banner-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
    min-width: 380px;
  }
  .main-btn,.fc-footer-lead-btn-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    gap: 16px;
    border-radius: 8px;
    background: linear-gradient(0deg, #101C2F, #101C2F), linear-gradient(117deg, #2DD4BF -70%, #002E93 41%, #F43F5E 149%);
    background-blend-mode: soft-light, normal;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    /* box-shadow: 0px 6px 8px -4px rgba(25, 54, 63, 0.15),0px 2px 4px -4px rgba(25, 54, 63, 0.15); */
  }
  .main-btn.login-btn {
    background: linear-gradient(109deg, #022D78 2%, #01116B 42%, #361453 97%);
    height: 36px;
  }
  .main-btn.login-btn:hover {
    background: linear-gradient(109deg, #094F92 2%, #042382 42%, #612A6A 97%);
  }
  .main-btn.login-btn:active {
    background: linear-gradient(109deg, #012666 2%, #000855 42%, #370B39 97%);
  }
  
  .normal-btn,.fc-footer-lead-btn-normal-btn {
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 11px 24px;
    gap: 10px;
    box-sizing: border-box;
    text-align: center;
    
    /* 初始状态：黑色边框 */
    border: 1px solid #011870;
    color: #011870;
    /* background: white; */
    /* box-shadow: 0px 0.6px 0.6px -1.25px rgba(0, 0, 0, 0.18),
                0px 2.29px 2.29px -2.5px rgba(0, 0, 0, 0.16),
                0px 10px 10px -3.75px rgba(0, 0, 0, 0.063); */
    
    /* 为hover状态做准备 */
    position: relative;
    background-clip: padding-box; /* 关键！ */
    transition: all 0.3s ease;
}

.normal-btn:hover,.fc-footer-lead-btn-normal-btn:hover {
    /* 关键：使用两层背景 */
    border: 1px solid #0448A9; /* 透明边框 */
}

/* active状态保持不变 */
.normal-btn:active,.fc-footer-lead-btn-normal-btn:active {
    border: 1px solid #000000;
    /* box-shadow: 0px 0.6px 0.6px -1.25px rgba(0, 0, 0, 0.18),
                0px 2.29px 2.29px -2.5px rgba(0, 0, 0, 0.16),
                0px 10px 10px -3.75px rgba(0, 0, 0, 0.063); */
}

.normal-btn:active .normal-btn-text ,.fc-footer-lead-btn-normal-btn:active .normal-btn-text {
    background: linear-gradient(0deg, #000000, #000000), 
                linear-gradient(121deg, #2DD4BF -73%, #002E93 40%, #F43F5E 152%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
}
  
  .normal-btn .normal-btn-text,.fc-footer-lead-btn-normal-btn .normal-btn-text {
    color: #011870;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
    font-size: 20px;
  }

  .normal-btn .btn-arrow,.fc-footer-lead-btn-normal-btn .btn-arrow {
    display: none;
  }
  
  .normal-btn:hover  .normal-btn-text,.fc-footer-lead-btn-normal-btn:hover .normal-btn-text{
    background: linear-gradient(121deg, #2DD4BF -73%, #002E93 40%, #F43F5E 152%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
  }

  .main-btn:hover,.fc-footer-lead-btn-main-btn:hover {
    background: linear-gradient(0deg, rgba(16, 28, 47, 0.4), rgba(16, 28, 47, 0.4)), linear-gradient(117deg, #2DD4BF -70%, #002E93 41%, #F43F5E 149%);
  }
  .main-btn:active,.fc-footer-lead-btn-main-btn:active{
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(117deg, #2DD4BF -70%, #002E93 41%, #F43F5E 149%);
  }
  .main-btn .btn-arrow,.fc-footer-lead-btn-main-btn .btn-arrow  {
   background: url(/components/img/btn-arrow.svg) no-repeat center center;
   width: 16px;
   height: 16px;
   display: inline-block;
   transition: transform 0.3s ease;
   /* margin-left: 8px; */
   vertical-align: middle;
   position: relative;
   display: inline-flex;
  } 
  .main-btn:hover .btn-arrow,.fc-footer-lead-btn-main-btn:hover .btn-arrow  {
    transform: translate(3px, -3px);
  }

  
  /* banner 5-cards list (reuse intelligent hover behavior) */
  .banner-cards {
    margin-top: 36px;
    padding-bottom: 60px;
  }
  
  .scenario-cards,.section-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .scenario-card {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* text-align: center; */
    text-decoration: none;
    color: inherit;
  }
  
  /* 可选背景图（每卡独立配置 bgSrc/bgSrcByLang 时启用） */
  .scenario-card.card-has-bg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  
  /* cards carousel (horizontal autoplay) */
  .cards-carousel {
    width: 100%;
  }
  
  .cards-carousel-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* firefox */
  }
  
  .cards-carousel-viewport::-webkit-scrollbar {
    display: none;
  }
  
  .cards-carousel-track {
    display: flex;
    gap: 16px;
    padding: 0;
  }
  
  /* base card width for carousel */
  .cards-carousel-card {
    flex: 0 0 420px;
  }
  
  /* expandable */
  .card-expandable {
    position: relative;
  }
  
  .card-expand-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    cursor: pointer;
  }
  
  .card-expand-toggle::before,
  .card-expand-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
  }
  
  .card-expand-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  
  .cards-carousel-card.is-expanded {
    flex-basis: 720px;
    transform: translateY(-2px);
    z-index: 2;
  }
  
  .cards-carousel-card.is-expanded .card-expand-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  
  .card-button {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px; /* 导航 button 小 */
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 3s ease;
    border-radius: 8px;
    padding: 11px 24px;
    border: 1px solid #FFFFFF;
  }
  .card-button:hover{
    transform: scale(0.95);
  
  }
  
  .card-button-icon.icon-arrow-right {
    transition: all 2s ease;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(/public/images/button-icon-white.png) no-repeat center center;
    background-size: 100% 100%;
  }
  .card-button:hover .icon-arrow-right {
    transform: translate(14px, -8px);
  }/* 按钮通用上滑右上角动效 */
  
  /* hover 上滑动效由 .hover-lift 统一提供 */
  
  .banner .scenario-title {
    margin: 0 0 8px 0;
    line-height: 1.4;
    font-size: 24px; /* 块内容标题 24 semibold */
    font-weight: 600;
    color: #101C2F;
  }
  
  .banner .scenario-subtitle {
    padding: 2px 8px;
    font-size: 16px; /* 块内容描述 16 */
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.65);
    margin: 0;
    line-height: 1.6;
    background: linear-gradient(
      100deg,
      rgba(124, 158, 255, 0.2) -3%,
      rgba(10, 100, 250, 0.2) 98%
    );
    display: inline-block;
  }
  
  .section-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
  }
  
  .section-list li a {
    color: #0a64fa;
    text-decoration: none;
  }
  
  .section-media {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  
  .section-media img {
    max-width: 480px;
    border-radius: 8px;
    display: block;
  }
  
  .section-media .section-body {
    flex: 1;
  }
  
  /* media-list (list + image accordion) */
  .media-list {
    display: flex;
    gap: 120px;
    align-items: flex-start; /* 使用 flex-start 防止高度变化影响对齐 */
    /* min-height: 400px; */
  }
  
  .media-list-left .media-list-items { order: 0; }
  .media-list-left .media-list-media { order: 1; }
  .media-list-right .media-list-items { order: 1; }
  .media-list-right .media-list-media { order: 0; }
  
  .media-list-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .media-list-item {
    padding: 1px; /* 边框厚度 */
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;

   
  }
  .media-list-item:not(.is-active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E4E4E4;
  }
  .media-list-item-wrapper {
    border-radius: 23px; /* 外层radius - 边框厚度 */
    padding: 20px;
  }

  
  .media-list-item:hover {
    background: linear-gradient(93deg, #2DD4BF -62%, #002E93 41%, #F43F5E 142%);
    box-shadow: 0px 40px 32px 0px rgba(12, 18, 55, 0.05),0px 10px 8px 0px rgba(12, 18, 55, 0.03),0px 2px 4px 0px rgba(12, 18, 55, 0.02);

  }
  .media-list-item:hover .media-list-item-wrapper, .media-list-item.is-active .media-list-item-wrapper {
    background: white; /* 或你的背景色 */
  }
  
  .media-list-item.is-active {
    background: linear-gradient(93deg, #2DD4BF -62%, #002E93 41%, #F43F5E 142%);
    box-shadow: 0px 40px 32px 0px rgba(12, 18, 55, 0.05),0px 10px 8px 0px rgba(12, 18, 55, 0.03),0px 2px 4px 0px rgba(12, 18, 55, 0.02);
  }

  
  .media-list-head {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .media-list-icon {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(16, 28, 47, 0.25);
    transition: background 0.25s ease;
    flex: 0 0 auto;
  }
  
 
  
  /* icon image mode (optional per item) */
  .media-list-icon.media-list-icon-img {
    width: 24px;
    height: 24px;
    border-radius: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
  }
  
  .media-list-title {
    font-size: 24px; /* 块内容标题 24 semibold */
    font-weight: 600;
    color: #101C2F;
    line-height: 1.2;
    transition: color 0.25s ease;
  }
  
  .media-list-item:hover .media-list-title,
  .media-list-item.is-active .media-list-title {
    color: #0034AD;
  }
  
  .media-list-desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(16, 28, 47, 0.72);
    /* 使用 grid 实现高度动画，同时保持布局稳定 */
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
  }
  
  .media-list-desc > * {
    overflow: hidden;
    min-height: 0;
    margin-left: 40px;
  }
  
  .media-list-item.is-active .media-list-desc {
    grid-template-rows: 1fr;
    opacity: 1;
  }
  
  .media-list-desc-list {
    margin: 0 0 0 22px;
    padding: 0;
    list-style: none;
  }
  
  .media-list-desc-list li {
    margin: 6px 0;
    line-height: 1.6;
    position: relative;
    padding-left: 16px;
  }

  .media-list-desc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #475569;
    border-radius: 50%;
  }
  
  .media-list-media {
    flex: 0 0 auto; /* 固定不伸缩 */
    display: flex;
    align-items: flex-start; /* 顶部对齐 */
    justify-content: center;
    min-height: 360px; /* 固定最小高度防止抖动 */
  }
  
  .media-list-img {
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    display: block;
    /* box-shadow: 0 18px 60px rgba(18, 36, 75, 0.12); */
  }
  
  /* tabs-top 布局: 水平标签导航 + 下方内容区 */
  .media-list-tabs-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .media-list-tabs-bar {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 8px 0;
  }
  
  .media-list-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .media-list-tab-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(16, 28, 47, 0.65);
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  
  .media-list-tab-line {
    width: 100%;
    height: 2px;
    background: #E4E4E4;
    border-radius: 1px;
    transition: background 0.3s ease;
  }
  
  .media-list-tab.is-active .media-list-tab-text {
    color: #101C2F;
  }
  
  .media-list-tab.is-active .media-list-tab-line {
    background: linear-gradient(90deg, #0034AD 0%, #0034AD 100%);
  }
  
  .media-list-tab:hover .media-list-tab-text {
    color: #101C2F;
  }
  
  .media-list-content-area {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    min-height: 300px;
  }
  
  .media-list-text-panel {
    flex: 1;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .media-list-content-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: linear-gradient(137deg, #2DD4BF -9%, #2563EB 50%, #F43F5E 109%);
    box-shadow: 0px 8.75px 26.25px rgba(1, 26, 129, 0.1);
  }
  
  .media-list-content-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: #101C2F;
  }
  
  .media-list-content-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #101C2F;
  }
  
  .media-list-content-desc ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .media-list-content-desc li {
    margin-bottom: 8px;
    line-height: 1.75;
  }
  
  .media-list-media-panel {
    flex: 1;
    max-width: 600px;
    border-radius: 24px;
    overflow: hidden;
  }
  
  .media-list-content-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
  }
  
  @media (max-width: 1024px) {
    .media-list-tabs-bar {
      gap: 24px;
      flex-wrap: wrap;
    }
    
    .media-list-tab-text {
      font-size: 18px;
    }
    
    .media-list-content-area {
      flex-direction: column;
      gap: 32px;
    }
    
    .media-list-text-panel {
      max-width: 100%;
    }
    
    .media-list-media-panel {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .media-list-tabs-bar {
      gap: 16px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    .media-list-tab-text {
      font-size: 16px;
    }
    
    .media-list-content-title {
      font-size: 18px;
    }
    
    .media-list-content-desc {
      font-size: 14px;
    }
  }
  
  .section-carousel {
    position: relative;
  }
  
  .section-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  
  .section-tab {
    padding: 10px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    font-size: 16px; /* 导航 button 小号 */
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
  }
  
  .section-tab img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex: 0 0 auto;
  }
  
  .section-tab.active {
    border-color: #0a64fa;
    color: #0a64fa;
  }
  
  .section-carousel-content {
    position: relative;
  }
  
  .section-carousel-item {
    display: none;
  }
  
  .section-carousel-item.active {
    display: block;
  }
  
  /* logo wall carousel */
  .logo-wall {
    width: 100%;
  background: transparent;
  }

.logo-wall .section-container {
  padding-top: 48px;
  padding-bottom: 48px;
}
  /* logo wall marquee (seamless constant-speed scroll) */
  .logo-wall-marquee-viewport {
    width: 100%;
    overflow: hidden;
  }

  .logo-wall-marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    will-change: transform;
    transform: translateX(0px);
  }

  .logo-wall-marquee-set {
    display: flex;
    align-items: center;
    gap: 56px;
  }

  .logo-wall.logo-wall-marquee {
    padding: 20px 0 10px;
  }

  /* When using full-bleed, the viewport should already be full width from parent */
  .section-block.full-bleed .logo-wall.logo-wall-marquee .logo-wall-marquee-viewport {
    width: 100%;
  }

  .logo-wall.logo-wall-marquee .logo-wall-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
  }

  .logo-wall.logo-wall-marquee .logo-wall-logo img {
    height: 48px;
    width: auto;
    max-width: none;
    object-fit: contain;
  }

  .logo-wall-viewport {
    width: 100%;
    /* overflow: hidden; */
    border-radius: 16px;
  }
  
  .logo-wall-track {
    display: flex;
    width: 100%;
    transform: translateX(0%);
    transition-property: transform;
    transition-timing-function: ease;
    transition-duration: 600ms;
    will-change: transform;
  }
  
  /* when jumping (no animation) */
  .logo-wall-track.is-jumping {
    transition-duration: 0ms !important;
  }
  
  .logo-wall-page {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    background: #fff;
  }
  
  .logo-wall-img {
    width: 100%;
    max-width: 200px;
    display: block;
    border-radius: 12px;
  }
  
  /* optional grid mode (if configured with logos list) */
  .logo-wall-page.logo-wall-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
  }
  
  .logo-wall-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px 12px; */
    border-radius: 12px;
    transition: all .3s ease-in-out;

    /* background: rgba(16, 28, 47, 0.03); */
  }
 
.logo-wall-logo:hover {
  transform: scale(1.1);
}
  
  .logo-wall-logo img {
    height: 48px;
    object-fit: contain;
    display: block;
  }

  /* marquee mode: no grayscale, full color */
  .logo-wall-marquee .logo-wall-logo img {
    filter: none;
    opacity: 1;
    width: auto;
    max-width: none;
  }

  /* dual-marquee mode: 两行错开滚动 */
  .logo-wall.logo-wall-dual-marquee {
    padding: 20px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .logo-wall-dual-marquee .logo-wall-marquee-viewport {
    width: 100%;
    overflow: hidden;
  }

  .logo-wall-dual-marquee .logo-wall-marquee-track {
    display: flex;
    align-items: center;
    gap: 56px;
    will-change: transform;
    transform: translateX(0px);
  }

  .logo-wall-dual-marquee .logo-wall-marquee-set {
    display: flex;
    align-items: center;
    gap: 64px;
    flex-shrink: 0;
  }

  .logo-wall-dual-marquee .logo-wall-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
  }

  .logo-wall-dual-marquee .logo-wall-logo img {
    height: 48px;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: none;
    opacity: 1;
  }

  .logo-wall-dual-marquee .logo-wall-logo:hover {
    transform: scale(1.1);
  }
  
  /* tabs panel (测试：五大核心产品能力) */
  .core-tabs-panel {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  
  .core-tabs-media {
    flex: 1;
    min-width: 0;
  }
  
  .core-tabs-media img {
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    display: block;
    box-shadow: 0 18px 60px rgba(18, 36, 75, 0.12);
  }
  
  .core-tabs-context {
    flex: 1;
    min-width: 0;
  }
  
  .core-tabs-title {
    font-size: 24px;
    font-weight: 600;
    color: #101C2F;
    line-height: 1.35;
    margin-bottom: 14px;
  }
  
  .core-tabs-list {
    margin: 0 0 18px 18px;
    padding: 0;
    color: rgba(16, 28, 47, 0.8);
    font-size: 16px;
    line-height: 1.7;
  }
  
  .core-tabs-list li {
    margin: 6px 0;
  }
  
  
  .banner-cards.scenario-cards {
    text-align: center;
  }
  .list-cards.scenario-cards {
    text-align: left;
  }
  .list-cards.scenario-cards .scenario-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .list-cards.scenario-cards .scenario-subtitle {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 24px;
  }
  .section-content-img {
    width: 100%;
    height: 100%;
    margin-top: 30px;
  }
  /* demo测试样式 后面需要删掉 */
  .list-cards .scenario-card {
    background: #d0b595;
  }

/* ------------------------------
   FilezComponents demo styles
   (fc- prefix, safe to include globally)
------------------------------ */

.fc-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 28, 47, 0.08);
}

.fc-header-inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}

.fc-header-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.fc-header-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fc-header-link {
  color: rgba(16, 28, 47, 0.78);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.fc-header-link:hover {
  color: #0a64fa;
}

.fc-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0a64fa;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* ============================================
   CaseCarousel V2
   ============================================ */

/* Section 标题描述保持 1280 宽度 */
.section-block:has(.fc-case-carousel-v2) .section-container {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

/* 标题区域：包含标题描述和控制按钮 */
.section-block:has(.fc-case-carousel-v2) .section-title,
.section-block:has(.fc-case-carousel-v2) .section-desc {
  padding-right: 120px; /* 为按钮留空间 */
}
.section-title, .section-desc {
  text-align: center;

}
.section-title.left, .section-desc.left {
  text-align: left;
}

/* scheme-squeeze、media-list、tab-media-list 组件的标题描述左对齐 */
.section-block:has(.fc-squeeze-carousel) .section-title,
.section-block:has(.fc-squeeze-carousel) .section-desc,
.section-block:has(.media-list) .section-title,
.section-block:has(.media-list) .section-desc,
.section-block:has(.fc-tab-media-list) .section-title,
.section-block:has(.fc-tab-media-list) .section-desc {
  text-align: left;
}

/* 标题对齐方式 - 默认左对齐 */
.fc-case-align-left + .section-title,
.section-block:has(.fc-case-align-left) .section-title,
.section-block:has(.fc-case-align-left) .section-desc {
  text-align: left;
}

.fc-case-align-center + .section-title,
.section-block:has(.fc-case-align-center) .section-title,
.section-block:has(.fc-case-align-center) .section-desc {
  text-align: center;
  padding-right: 0;
}

/* 卡片区域全宽 */
.section-block:has(.fc-case-carousel-v2) .section-body {
  width: 100vw;
  /* margin-left: calc(50vw - 50%); */
  position: relative;
}

/* Container */
.fc-case-carousel {
  position: relative;
}

.fc-case-carousel-v2 {
  border-radius: 0;
  overflow: visible;
}

/* 顶部控制按钮 - 放在标题区右侧 */
.fc-case-controls-top {
  position: absolute;
  top: -80px;
  right: calc(100vw - 1280px);
  display: flex;
  gap: 12px;
  z-index: 10;
}

@media (max-width: 1320px) {
  .fc-case-controls-top {
    right: 20px;
  }
}

.fc-case-carousel-viewport {
  width: 100%;
  /* overflow: hidden; */
}
.fc-case-carousel-viewport::-webkit-scrollbar { display: none; }

.fc-case-carousel-track {
  display: flex;
  width: max-content;
  /* padding: 20px 0 0px; */
  will-change: transform;
  transition: transform 0.5s ease-in-out;
  /* gap: 24px; */
}

/* Card */
.fc-case-card {
  flex: 0 0 calc(100vw - 200px);
  max-width: 1060px;
  min-width: 700px;
  border-radius: 24px;
  padding: 32px;
  gap: 40px;
  background: linear-gradient(0deg, #EEF2FA, #EEF2FA), linear-gradient(0deg, rgba(16, 28, 47, 0.06), rgba(16, 28, 47, 0.06)), #FFFFFF;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  align-items: stretch;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform: scale(.92);
  opacity: 0.6;
  /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); */
}

.fc-case-card.is-active {
  transform: scale(1);
  opacity: 1;
}

.fc-case-card.is-prev,
.fc-case-card.is-next {
  transform: scale(.92);
  opacity: 0.85;
}

.fc-case-card.is-hidden {
  transform: scale(.92);
  opacity: 0;
  pointer-events: none;
}

/* Media - 左侧图片区 */
.fc-case-media {
  flex: 0 0 45%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
}

.fc-case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 图片底部描述文字覆盖层 */
.fc-case-img-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  min-height: 42px;
}

/* Content - 右侧内容区 */
.fc-case-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Tag 标签 */
.fc-case-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  color: #fff;
  background: linear-gradient(102deg, #2DD4BF -8%, #2563EB 50%, #F43F5E 107%);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.fc-case-title {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #101C2F;
  margin-bottom: 16px;
}

.fc-case-desc {
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: #101C2F;
  margin-bottom: 24px;
  flex: 1;
}

/* 底部 Logo */
.fc-case-logo-wrap {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 28, 47, 0.08);
}

.fc-case-logo {
  height: 40px;
  /* width: auto; */
  /* max-width: 160px; */
  object-fit: contain;
  display: block;
}

/* Control Buttons */
.fc-case-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #011870;
  /* background: white; */
  /* box-shadow: 0px 0.6px 0.6px -1.25px rgba(0, 0, 0, 0.18), 0px 2.29px 2.29px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.063); */
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fc-case-btn:hover:not(.is-disabled) {
  background: linear-gradient(0deg, #101C2F, #101C2F), linear-gradient(147deg, #2DD4BF -98%, #002E93 39%, #F43F5E 173%), linear-gradient(147deg, #2DD4BF -98%, #124BC7 39%, #F43F5E 173%), #101C2F;
  background-blend-mode: soft-light, normal, normal, normal;
}

.fc-case-btn:hover:not(.is-disabled) .fc-case-arrow-left {
  background: url(/components/img/case-arrow-right.svg) no-repeat center center;
  transform: rotate(180deg);
}
.fc-case-btn:hover:not(.is-disabled) .fc-case-arrow-right {
  background: url(/components/img/case-arrow-right.svg) no-repeat center center;
  transform: rotate(0deg);
}
.fc-case-btn.is-disabled {
  opacity: 0.4;
  /* cursor: not-allowed; */
}

.fc-case-arrow {
  background: url(/components/img/case-arrow-left.svg) no-repeat center center; 
  width: 14px;
  height: 14px;
  /* background-size: cover; */
}

.fc-case-arrow-right {
  transform: rotate(180deg);
}


/* 隐藏底部控制按钮（使用顶部按钮） */
.fc-case-controls-bottom {
  display: none;
}

/* Legacy styles */
.fc-case-controls {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .fc-case-card {
    flex: 0 0 calc(100vw - 80px);
    min-width: 500px;
    padding: 24px;
    gap: 24px;
  }
  
  .fc-case-media {
    flex: 0 0 280px;
    min-height: 260px;
  }
  
  .fc-case-title {
    font-size: 20px;
  }
  
  .fc-case-controls-top {
    top: -70px;
  }
}

@media (max-width: 768px) {
  .fc-case-card {
    flex-direction: column;
    flex: 0 0 calc(100vw - 48px);
    min-width: auto;
    max-width: 100%;
    padding: 20px;
    gap: 20px;
  }
  
  .fc-case-media {
    flex: none;
    width: 100%;
    min-height: 200px;
  }
  
  .fc-case-content {
    padding: 0;
  }
  
  .fc-case-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .fc-case-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .fc-case-controls-top {
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .section-block:has(.fc-case-carousel-v2) .section-title,
  .section-block:has(.fc-case-carousel-v2) .section-desc {
    padding-right: 0;
    text-align: center;
  }
  
  .fc-case-btn {
    width: 40px;
    height: 40px;
  }
}

/* SchemeSqueezeCarousel */
.fc-squeeze-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.fc-squeeze-viewport::-webkit-scrollbar { display: none; }

.fc-squeeze-track {
  display: flex;
  gap: 24px;
  padding: 0;
}

.fc-squeeze-card {
  flex: 1 1 auto;
  border-radius: 24px;
  background: #101C2F;
  color: #fff;
  padding: 32px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  height: 400px;
  transition: filter 0.5s ease, flex 0.5s ease, transform 0.3s ease;
  /* 未展开时灰度效果 */
  filter: grayscale(0.3);
  cursor: pointer;
}

/* 展开时移除灰度效果 */
.fc-squeeze-card.is-expanded {
  filter: grayscale(0);
  cursor: pointer;
  /* transform: scale(1.02); */
}
.fc-squeeze-card.is-expanded:hover .fc-squeeze-img {
  transform: scale(1.05);
}


/* 图片容器 - 填满整个卡片 */
.fc-squeeze-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

/* 图片 - 填满容器 */
.fc-squeeze-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

/* 未展开时 hover 只缩放图片 */
.fc-squeeze-card:not(.is-expanded):hover .fc-squeeze-img {
  transform: scale(1.05);
}

/* 内容层级在图片之上 */
.fc-squeeze-title,
.fc-squeeze-desc,
.fc-squeeze-btn,
.fc-squeeze-toggle {
  position: relative;
  z-index: 1;
}

/* 未展开时隐藏 title, desc, btn */
.fc-squeeze-title,
.fc-squeeze-desc,
.fc-squeeze-btn {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

/* 展开时显示 title, desc, btn */
.fc-squeeze-card.is-expanded .fc-squeeze-title,
.fc-squeeze-card.is-expanded .fc-squeeze-desc,
.fc-squeeze-card.is-expanded .fc-squeeze-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fc-squeeze-title {
  font-size: 24px;
  font-weight: 600;;
  line-height: normal;
}

.fc-squeeze-desc {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  max-width: 520px;
  white-space: pre-line;
}

.fc-squeeze-btn {
  position: absolute;
  bottom: 30px;
  left: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  text-decoration: none;
  /* font-weight: 600; */
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* button 箭头图标 */
.fc-squeeze-btn-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* button hover 箭头右上角位移动效 */
.fc-squeeze-btn:hover .fc-squeeze-btn-arrow {
  transform: translate(3px, -3px);
}

.fc-squeeze-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  /* 默认显示展开图标（+） */
  background-image: url('/components/img/expand.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.fc-squeeze-toggle:hover {
  transform: scale(1.1);
}


/* 展开时显示收缩图标（-） */
.fc-squeeze-card.is-expanded .fc-squeeze-toggle {
  background-image: url('/components/img/collpase.svg');
}

/* FooterLead - CTA Mode */
.fc-footer-lead {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fc-footer-lead-cta {
  border-radius: 24px;
  padding: 60px 0px;
  
  background: url('/components/img/cta-bg.png') no-repeat center center;
  background-size: cover;
  /* animation: fc-footer-lead-gradient 8s ease infinite; */
  text-align: center;
}

@keyframes fc-footer-lead-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



.fc-footer-lead-inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}

.fc-footer-lead-cta .fc-footer-lead-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.fc-footer-lead-cta .fc-footer-lead-desc {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 32px;
  margin: 0 0 32px;
}

.fc-footer-lead-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}



/* Responsive */
@media (max-width: 768px) {
  .fc-footer-lead-cta {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .fc-footer-lead-cta .fc-footer-lead-title {
    font-size: 26px;
  }

  .fc-footer-lead-cta .fc-footer-lead-desc {
    font-size: 15px;
  }

  .fc-footer-lead-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .fc-footer-lead-btn {
    justify-content: center;
  }
}

/* ==============================================
   StickyScroll Component
   ============================================== */

/* IMPORTANT: sticky-scroll needs its parent section to NOT have overflow:hidden */
.section-block:has(.fc-sticky-scroll) {
  overflow: visible !important;
}

.section-block:has(.fc-sticky-scroll) .section-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.section-block:has(.fc-sticky-scroll) .section-body {
  width: 100%;
}

.fc-sticky-scroll {
  position: relative;
  width: 100%;
  /* height is set by JS: items.length * itemHeight vh */
}

.fc-sticky-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1e5e 0%, #0d2b7a 50%, #1a3a8f 100%);
  transition: background 0.6s ease;
}

/* Background color variations based on active index (set via JS data-active-index) */
.fc-sticky-scroll-sticky[data-active-index="0"] {
  background: linear-gradient(135deg, #0a1e5e 0%, #0d2b7a 50%, #1a3a8f 100%);
}
.fc-sticky-scroll-sticky[data-active-index="1"] {
  background: linear-gradient(135deg, #0d2b7a 0%, #1a3a8f 50%, #2563eb 100%);
}
.fc-sticky-scroll-sticky[data-active-index="2"] {
  background: linear-gradient(135deg, #1a3a8f 0%, #2563eb 50%, #3b82f6 100%);
}
.fc-sticky-scroll-sticky[data-active-index="3"] {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
}

.fc-sticky-scroll-inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 120px 0px  10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  justify-content: space-between;
}

/* Header area: title + description */
.fc-sticky-scroll-header {
  text-align: left;
}

.fc-sticky-scroll-header-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
  /* max-width: 1000px; */
}

.fc-sticky-scroll-header-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Main content area: nav + content side by side */
.fc-sticky-scroll-body {
  display: flex;
  gap: 60px;
  align-items: flex-end;
  position: relative;
  /* height: 100%; */
  /* margin-top: 20%; */
}

.fc-sticky-scroll-nav {
  /* move to bottom-right */
  position: absolute;
  right: -30px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 3;
  padding: 0 0 8px 0;
  pointer-events: auto;
}

.fc-sticky-scroll-nav-item {
  position: relative;
  padding: 12px 0 12px 0;
  cursor: pointer;
  transition: all 0.35s ease;
  /* border-left: 2px solid rgba(255, 255, 255, 0.2); */
}

.fc-sticky-scroll-nav-item::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  /* background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%); */
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.fc-sticky-scroll-nav-item.is-active::before,
.fc-sticky-scroll-nav-item.is-past::before {
  transform: scaleY(1);
}

.fc-sticky-scroll-indicator {
  position: absolute;
  left: -7px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.35s ease;
}

.fc-sticky-scroll-nav-item.is-active .fc-sticky-scroll-indicator {
  background: #60a5fa;
  border-color: #60a5fa;
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.3);
}

.fc-sticky-scroll-nav-item.is-past .fc-sticky-scroll-indicator {
  background: #3b82f6;
  border-color: #3b82f6;
}

/* nav no longer renders title/desc */

.fc-sticky-scroll-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 0px; /* leave room for bottom-right nav */
}

.fc-sticky-scroll-content-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  max-width: 900px;
}

.fc-sticky-scroll-content {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-sticky-scroll-content-item {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-80%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fc-sticky-scroll-content-item.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.fc-sticky-scroll-content-wrapper {
  position: relative;
  z-index: 1;
}

/* Background images container - positioned in top-right corner */
.fc-sticky-scroll-bg-images {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 0;
}

.fc-sticky-scroll-content-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.fc-sticky-scroll-content-bg-img.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fc-sticky-scroll-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Cards grid for content items */
.fc-sticky-scroll-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fc-sticky-scroll-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  /* height: 220px; */
}

.fc-sticky-scroll-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
#zh .fc-sticky-scroll-card-list li, #hk .fc-sticky-scroll-card-list li {
  list-style: outside;
}
.fc-sticky-scroll-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* background: rgba(96, 165, 250, 0.2); */
  border-radius: 10px;
  color: #60a5fa;
  font-size: 20px;
}

.fc-sticky-scroll-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.fc-sticky-scroll-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.fc-sticky-scroll-card-list {
  margin: 0;
  /* padding: 0 0 0 18px; */
  list-style: disc;
}

.fc-sticky-scroll-card-list li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.fc-sticky-scroll-spacer {
  pointer-events: none;
}
div#icon_module {
  visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .fc-sticky-scroll-inner {
    padding: 40px 16px;
    gap: 24px;
  }

  .fc-sticky-scroll-header-title {
    font-size: 28px;
  }

  .fc-sticky-scroll-header-desc {
    font-size: 15px;
  }

  .fc-sticky-scroll-body {
    flex-direction: column;
    gap: 24px;
  }

  .fc-sticky-scroll-nav {
    position: static;
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    padding: 0 0 8px 0;
  }

  .fc-sticky-scroll-nav-item {
    flex: 0 0 auto;
    padding: 12px 20px 12px 12px;
    border-left: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  }

  .fc-sticky-scroll-nav-item::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: -2px;
    width: auto;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .fc-sticky-scroll-nav-item.is-active::before,
  .fc-sticky-scroll-nav-item.is-past::before {
    transform: scaleX(1);
  }

  .fc-sticky-scroll-indicator {
    display: none;
  }

  .fc-sticky-scroll-content-col {
    padding-right: 0;
    gap: 16px;
  }

  .fc-sticky-scroll-content-title {
    font-size: 18px;
  }

  .fc-sticky-scroll-content {
    min-height: 280px;
  }

  .fc-sticky-scroll-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fc-sticky-scroll-card {
    padding: 16px;
  }

  .fc-sticky-scroll-card-title {
    font-size: 16px;
  }

  .fc-sticky-scroll-card-list li {
    font-size: 13px;
  }
}