/* extracted-index-styles: original order preserved. */

/* extracted-index-style-1: base-1 */
:root {
      --navy: #0d1426;
      --navy-2: #121b2d;
      --blue: #0063ff;
      --bg: #f8fafc;
      --card: #ffffff;
      --ink: #0d1426;
      --text: #334155;
      --muted: #667085;
      --line: #e7ecf3;
      --pale-blue: #eef5ff;
      --shadow: 0 16px 38px rgba(13, 20, 38, 0.08);
      --container: min(1248px, calc(100vw - 48px));
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background: var(--bg);
      letter-spacing: 0;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      z-index: 50;
      top: 0;
      left: 0;
      width: 100%;
      height: 88px;
      background: rgba(8, 16, 31, 0.7);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(18px);
      transition: box-shadow 0.25s ease, background 0.25s ease, height 0.25s ease;
    }

    .site-header.is-scrolled {
      height: 76px;
      background: rgba(8, 16, 31, 0.92);
      box-shadow: 0 12px 34px rgba(4, 10, 22, 0.28);
    }

    .nav-inner {
      width: var(--container);
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      margin: 0 auto;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 154px;
      color: #fff;
    }

    .brand-logo {
      display: block;
      width: 154px;
      height: 60px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 46px;
      color: rgba(226, 232, 240, 0.82);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.045em;
    }

    .nav-links a {
      position: relative;
      padding: 31px 0;
      transition: color 0.2s ease;
    }

    .site-header.is-scrolled .nav-links a {
      padding: 25px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 20px;
      width: 0;
      height: 2px;
      border-radius: 99px;
      background: var(--blue);
      transform: translateX(-50%);
      transition: width 0.2s ease;
    }

    .nav-links a.is-active,
    .nav-links a:hover {
      color: #fff;
    }

    .nav-links a.is-active::after {
      width: 28px;
    }

    .nav-cta,
    .hero-actions a:first-child {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 28px;
      border-radius: 999px;
      background: var(--blue);
      color: #fff;
      border: 0;
      box-shadow: 0 14px 30px rgba(0, 99, 255, 0.25);
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-cta:hover,
    .hero-actions a:first-child:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(0, 99, 255, 0.34);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      margin-left: auto;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      border-radius: 99px;
      background: currentColor;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
      position: relative;
      min-height: 760px;
      padding: 160px 0 110px;
      overflow: hidden;
      color: #fff;
      isolation: isolate;
      background: url("images/hero-bg.jpg") center center / cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse at 38% 42%, rgba(2, 7, 19, 0.32) 0%, rgba(2, 7, 19, 0.68) 38%, rgba(2, 7, 19, 0.88) 72%, rgba(2, 7, 19, 0.95) 100%),
        linear-gradient(to bottom, rgba(2, 7, 19, 0.18) 0%, rgba(2, 7, 19, 0.08) 35%, rgba(2, 7, 19, 0.55) 100%);
      pointer-events: none;
    }

    .hero-space {
      position: absolute;
      inset: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: block;
      pointer-events: none;
    }

    .hero-layout {
      position: relative;
      z-index: 3;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 430px;
    }

    .hero-copy {
      width: min(100%, 920px);
      margin: 0 auto;
    }

    .hero-copy h1 {
      max-width: 880px;
      margin: 0 auto;
      color: #fff;
      font-size: clamp(42px, 5vw, 72px);
      line-height: 1.16;
      font-weight: 900;
      overflow-wrap: anywhere;
      text-shadow: 0 0 42px rgba(0, 99, 255, 0.26), 0 8px 40px rgba(0, 0, 0, 0.36);
    }

    .hero-copy p {
      max-width: 760px;
      margin: 28px auto 0;
      color: #cbd5e1;
      font-size: 19px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
      margin-top: 42px;
    }

    .hero-actions a {
      min-height: 52px;
      padding: 0 30px;
      font-size: 16px;
    }

    .hero-actions a:last-child {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 30px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      font-weight: 600;
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .hero-actions a:last-child:hover {
      border-color: rgba(255, 255, 255, 0.42);
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    section {
      scroll-margin-top: 96px;
    }

    .section-block {
      padding: 92px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 520px) minmax(260px, 440px);
      justify-content: space-between;
      align-items: end;
      gap: 48px;
      margin-bottom: 64px;
    }

    .section-label {
      display: block;
      margin-bottom: 16px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-head h2 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(30px, 3.2vw, 42px);
      line-height: 1.18;
      font-weight: 900;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
    }

    .section-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      justify-self: end;
      color: var(--blue);
      font-size: 15px;
      font-weight: 700;
      transition: gap 0.2s ease;
    }

    .section-more::after {
      content: "→";
      transition: transform 0.2s ease;
    }

    .section-more:hover {
      gap: 12px;
    }

    .section-more:hover::after {
      transform: translateX(4px);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .service-card {
      display: block;
      position: relative;
      min-height: 250px;
      padding: 34px 28px 28px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--card);
      box-shadow: 0 12px 28px rgba(13, 20, 38, 0.07);
      overflow: hidden;
      text-align: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--blue);
      transform: scaleX(0.18);
      transform-origin: left center;
      transition: transform 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 99, 255, 0.28);
      box-shadow: 0 24px 52px rgba(13, 20, 38, 0.13);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 84px;
      height: 84px;
      display: grid;
      place-items: center;
      margin: 8px auto 0;
      border: 1px solid rgba(0, 99, 255, 0.14);
      border-radius: 50%;
      background: linear-gradient(180deg, #f8fbff 0%, var(--pale-blue) 100%);
      color: var(--blue);
      box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.56);
    }

    .service-icon svg {
      width: 38px;
      height: 38px;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .service-number {
      position: absolute;
      top: 28px;
      left: 28px;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 50%;
      background: var(--pale-blue);
      color: var(--blue);
      font-size: 15px;
      font-weight: 900;
    }

    .service-card h3 {
      margin: 28px 0 14px;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.35;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 900;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .product-card {
      position: relative;
      min-height: 360px;
      padding: 36px 38px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .product-card.dark {
      color: #fff;
      background: linear-gradient(135deg, var(--navy) 0%, #0b327f 100%);
    }

    .product-card.light {
      border: 1px solid var(--line);
      background: #fff;
    }

    .product-card.light::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 6px;
      background: var(--blue);
    }

    .product-kicker {
      color: #dbeafe;
      font-size: 13px;
      font-weight: 900;
    }

    .product-card.light .product-kicker {
      color: var(--blue);
    }

    .product-card h3 {
      max-width: 390px;
      margin: 18px 0 18px;
      color: inherit;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.25;
      font-weight: 900;
    }

    
    .product-card .product-cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }
    .product-card:has(.product-cover-img) .product-kicker,
    .product-card:has(.product-cover-img) h3,
    .product-card:has(.product-cover-img) p,
    .product-card:has(.product-cover-img) .product-features { position: relative; z-index: 2; }

    .product-card p {
      max-width: 410px;
      margin: 0;
      color: inherit;
      opacity: 0.78;
      font-size: 16px;
      line-height: 1.8;
    }

    .product-features {
      display: grid;
      gap: 8px;
      margin-top: 44px;
      color: inherit;
      font-size: 15px;
      font-weight: 600;
    }


    /* 首页核心产品：改成和产品列表页一致的上下结构卡片，并让整张卡片可点击 */
    #products .products-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 36px;
    }

    #products .product-card {
      display: block;
      min-height: 0;
      padding: 0;
      border: 0;
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      color: var(--text);
      box-shadow: var(--shadow);
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    #products .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 52px rgba(13,20,38,0.14);
    }

    #products .product-card.dark,
    #products .product-card.light {
      color: var(--text);
      background: #fff;
      border: 0;
    }

    #products .product-card.light::before {
      display: none;
    }

    #products .product-card-visual {
      position: relative;
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(135deg, #eef5ff, #d6e4ff);
    }

    #products .product-card-visual.dark {
      background: linear-gradient(135deg, #020713, #081020);
    }

    #products .product-card-visual.light {
      background: linear-gradient(135deg, #eef5ff, #d6e4ff);
    }

    #products .product-card-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(0,99,255,0.2), transparent 60%);
    }

    #products .product-card-visual svg {
      position: relative;
      z-index: 1;
      width: 100px;
      height: 100px;
    }

    #products .product-card-visual .product-cover-img {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    #products .product-card-body {
      padding: 32px;
      background: #fff;
    }

    #products .product-kicker {
      display: inline-block;
      margin-bottom: 10px;
      color: var(--blue);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
    }

    #products .product-card h3 {
      max-width: none;
      margin: 0 0 12px;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.35;
      font-weight: 700;
    }

    #products .product-card p {
      max-width: none;
      margin: 0 0 20px;
      color: var(--muted);
      opacity: 1;
      font-size: 15px;
      line-height: 1.7;
    }

    #products .product-features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 20px;
      color: inherit;
      font-size: 12px;
      font-weight: 500;
    }

    #products .product-features span {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 4px 12px;
      border-radius: 99px;
      background: var(--pale-blue);
      color: var(--blue);
      font-size: 12px;
      font-weight: 500;
      line-height: 1.35;
    }

    #products .card-link {
      margin-top: 0;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 700;
      transition: gap 0.2s ease;
    }

    #products .product-card:hover .card-link {
      gap: 10px;
    }

    #products .card-link::after {
      content: "\2192";
    }

    .device-visual,
    .platform-visual {
      position: absolute;
      right: 46px;
      bottom: 56px;
    }

    .device-shell {
      width: 150px;
      height: 130px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.14);
    }

    .device-lens {
      position: absolute;
      left: 44px;
      top: 26px;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 28px rgba(0, 99, 255, 0.32);
    }

    .platform-visual {
      display: grid;
      grid-template-columns: repeat(2, 62px);
      gap: 20px;
      right: 58px;
      bottom: 154px;
    }

    .module {
      width: 62px;
      height: 62px;
      border-radius: 8px;
      background: var(--pale-blue);
    }

    .module.active {
      background: var(--blue);
      box-shadow: 0 18px 36px rgba(0, 99, 255, 0.24);
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: -24px 0 34px;
    }

    .filter-btn {
      min-height: 38px;
      padding: 0 22px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .filter-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(0, 99, 255, 0.35);
    }

    .filter-btn.is-active {
      color: #fff;
      background: var(--blue);
      border-color: var(--blue);
      box-shadow: 0 12px 24px rgba(0, 99, 255, 0.18);
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .case-card {
      position: relative;
      min-height: 276px;
      border: 1px solid var(--line);
      border-radius: 8px;
      overflow: hidden;
      background: var(--navy);
      box-shadow: 0 12px 28px rgba(13, 20, 38, 0.07);
      isolation: isolate;
      cursor: pointer;
      transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .case-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 99, 255, 0.24);
      box-shadow: 0 22px 44px rgba(13, 20, 38, 0.12);
    }

    .case-card.is-hidden {
      display: none;
    }

    .case-media {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-size: cover;
      background-position: center;
      transition: transform 0.35s ease, filter 0.35s ease;
    }

    .case-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,17,34,0.15) 0%, rgba(7,17,34,0.45) 50%, rgba(7,17,34,0.92) 100%);
    }

    .case-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,99,255,0.08), transparent 60%);
    }

    .case-card:hover .case-media {
      transform: scale(1.06);
      filter: brightness(1.08) saturate(1.1);
    }


    .case-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(7, 17, 34, 0.08) 0%, rgba(7, 17, 34, 0.34) 52%, rgba(7, 17, 34, 0.88) 100%);
      opacity: 1;
      transition: opacity 0.28s ease;
    }

    .case-card:hover::after {
      opacity: 0.7;
    }

    .case-body {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 28px 28px 26px;
      height: 186px;
      transform: translateY(54px);
      opacity: 1;
      transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .case-card:hover .case-body,
    .case-card:focus-within .case-body {
      transform: translateY(0);
      opacity: 1;
    }

    .case-tag,
    .news-type {
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
    }

    .case-body h3 {
      margin: 12px 0 8px;
      color: var(--ink);
      font-size: 20px;
      line-height: 1.4;
    }

    .case-body p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .case-body .case-tag,
    .case-body h3,
    .case-body p {
      color: #fff;
    }

    .case-body .case-tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(0, 99, 255, 0.92);
      font-size: 13px;
      font-weight: 900;
    }

    .case-body p {
      color: rgba(255, 255, 255, 0.78);
      max-width: 320px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .case-card:hover .case-body p,
    .case-card:focus-within .case-body p {
      opacity: 1;
      transform: translateY(0);
    }

    .news-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
      gap: 42px;
      align-items: stretch;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .news-feature {
      position: relative;
      min-height: 430px;
      display: flex;
      align-items: flex-end;
      padding: 42px;
      color: #fff;
      background:
        radial-gradient(circle at 78% 24%, rgba(0, 99, 255, 0.16), transparent 26%),
        linear-gradient(135deg, var(--navy) 0%, #10254a 48%, #0b3a91 100%);
      overflow: hidden;
    }

    .news-feature::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
      background-size: 56px 56px;
      opacity: 0.6;
      mask-image: linear-gradient(135deg, #000, transparent 78%);
    }

    .news-feature::after {
      content: "";
      position: absolute;
      right: 44px;
      top: 54px;
      width: 118px;
      height: 118px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.04);
    }

    .news-feature-content {
      position: relative;
      z-index: 1;
      max-width: 520px;
    }

    .news-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 20px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .news-feature .news-meta {
      color: rgba(255, 255, 255, 0.78);
    }

    .news-type {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--pale-blue);
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
    }

    .news-feature .news-type {
      background: var(--blue);
      color: #fff;
    }

    .news-feature h3 {
      margin: 0;
      font-size: clamp(30px, 3.4vw, 44px);
      line-height: 1.22;
      letter-spacing: 0;
    }

    .news-feature p {
      max-width: 460px;
      margin: 20px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 16px;
      line-height: 1.8;
    }

    .news-list {
      display: grid;
      grid-template-rows: repeat(3, minmax(0, 1fr));
      align-content: stretch;
      min-height: 430px;
      padding: 34px 40px 34px 0;
    }

    .news-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
      min-height: 0;
      padding: 28px 0;
      border-bottom: 1px solid var(--line);
      transition: transform 0.2s ease;
      cursor: pointer;
    }

    .news-item:first-child {
      padding-top: 0;
    }

    .news-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .news-item:hover {
      transform: translateX(6px);
    }

    .news-item.news-placeholder {
      visibility: hidden;
      pointer-events: none;
    }

    .news-feature {
      cursor: pointer;
    }

    .news-item h3 {
      margin: 0;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.45;
    }

    .news-item p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .read-more {
      display: inline-block;
      margin-top: 28px;
      color: var(--blue);
      font-size: 15px;
      font-weight: 900;
    }

    .partners-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 30px;
    }

    .partner-logo {
      display: grid;
      min-height: 88px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .partner-logo img {
      display: block;
      width: 118px;
      max-width: 72%;
      height: auto;
      object-fit: contain;
      opacity: 0.78;
      filter: saturate(0.95);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .partner-logo:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 99, 255, 0.24);
    }

    .partner-logo:hover img {
      opacity: 1;
      transform: scale(1.04);
    }

    .site-footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 260px 200px auto; gap: 48px; margin-bottom: 48px; justify-content: space-between; align-items: flex-start; }
    .footer-grid > .footer-col:last-child { width: 450px; justify-self: end; text-align: left; transform: translateX(96px); }
    .footer-col:last-child a, .footer-col:last-child span { justify-content: flex-start; }
    .footer-desc { font-size: 14px; line-height: 1.7; margin: 14px 0 0; }
    .footer-col h3 { color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 18px; }
    .footer-col a, .footer-col span { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; transition: color 0.2s; }
    .footer-col a:hover { color: #fff; }
    .footer-col .contact-icon { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; color: rgba(255,255,255,0.35); }
    .footer-col .contact-text { display: inline-flex; align-items: center; }
    .qr-wrap { display: flex; flex-direction: row; align-items: flex-start; gap: 24px; }
    .qr-item { display: flex; flex-direction: column; align-items: center; }
    .qr-item + .qr-item { margin-left: 50px; }
    .qr { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; width: 90px; margin-bottom: 8px; }
    .qr i { aspect-ratio: 1; border-radius: 2px; background: rgba(255,255,255,0.12); }
    .qr i:nth-child(2n+1) { background: rgba(255,255,255,0.3); }
    .qr-label { font-size: 11px; text-align: center; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.35); }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.65s ease, transform 0.65s ease;
      transition-delay: var(--delay, 0ms);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes singularityPulse {
      0%, 100% {
        transform: translate(-50%, -50%) scale(0.96) rotate(0deg);
        opacity: 0.56;
      }
      50% {
        transform: translate(-50%, -50%) scale(1.04) rotate(16deg);
        opacity: 0.92;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media (max-width: 1180px) {
      :root {
        --container: min(100% - 40px, 960px);
      }

      .nav-links {
        gap: 30px;
        font-size: 13px;
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cases-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .partners-row {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
        grid-template-columns: 200px 140px auto;
        gap: 28px;
      }

      .footer-grid > .footer-col:last-child {
        width: auto;
        transform: none;
      }
    }

    @media (max-width: 1024px) {
      /* 首页核心产品：手机端与电脑缩小端改为上下单列；桌面全屏仍保持双列 */
      #products .products-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer-grid > div:first-child {
        display: flex;
        align-items: flex-start;
        gap: 16px;
      }

      .footer-grid .footer-desc {
        margin: 0;
        max-width: none;
      }

      .qr-wrap {
        justify-content: center;
        gap: 40px;
      }

      .qr-item + .qr-item {
        margin-left: 0;
      }

      .footer-grid > .footer-col:last-child {
        width: auto;
        transform: none;
        justify-self: start;
        text-align: left;
      }

      .footer-col:last-child a,
      .footer-col:last-child span {
        justify-content: flex-start;
      }
    }

    @media (max-width: 820px) {
      :root {
        --container: min(100% - 32px, 640px);
      }

      .site-header,
      .site-header.is-scrolled {
        height: 72px;
      }

      .brand {
        min-width: 132px;
      }

      .brand-logo {
        width: 132px;
        height: 52px;
      }

      .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        display: grid;
        gap: 0;
        padding: 14px 24px 26px;
        background: rgba(13, 20, 38, 0.98);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
        transform: translateY(-120%);
        transition: transform 0.25s ease;
      }

      .menu-open .nav-links {
        transform: translateY(0);
      }

      .nav-links a,
      .site-header.is-scrolled .nav-links a {
        padding: 13px 0;
      }

      .nav-links a::after {
        left: 0;
        bottom: 7px;
        transform: none;
      }

      .nav-cta {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .hero {
        min-height: auto;
        padding: 132px 0 76px;
      }

      .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(34px, 8.8vw, 42px);
        line-height: 1.2;
      }

      .hero-copy p {
        font-size: 17px;
      }

      .services-grid,
      .products-grid,
      .cases-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .news-panel {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .news-list {
        min-height: auto;
        padding: 30px;
      }

      .news-feature {
        min-height: 360px;
        padding: 32px;
      }

      .section-block {
        padding: 70px 0;
      }

      .section-head {
        margin-bottom: 42px;
        gap: 18px;
      }

      .filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
      }

      .filter-btn {
        flex: 0 0 auto;
      }

      .case-card::after {
        opacity: 1;
      }

      .case-body {
        transform: translateY(0);
        opacity: 1;
      }

      .product-card {
        min-height: 420px;
      }

      .device-visual {
        right: 28px;
        bottom: 34px;
      }

      .platform-visual {
        right: 34px;
        bottom: 104px;
      }

      .partners-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      :root {
        --container: calc(100% - 28px);
      }

      .hero-actions {
        display: grid;
      }

      .hero-actions a {
        width: 100%;
      }

      .partners-row {
        grid-template-columns: 1fr;
      }

      .product-card {
        padding: 30px 26px;
      }

      .product-card h3 {
        font-size: 28px;
      }
    }
  
    .whole-card-link { color: inherit; text-decoration: none; cursor: pointer; }
    .whole-card-link:focus-visible { outline: 3px solid rgba(0,99,255,0.38); outline-offset: 4px; }

/* extracted-index-style-2: base-2 */
html.cms-dynamic-loading .nav-links,
  html.cms-dynamic-loading .nav-cta,
  html.cms-dynamic-loading .hero-copy,
  html.cms-dynamic-loading .page-hero .container,
  html.cms-dynamic-loading .section-block > .container,
  html.cms-dynamic-loading .site-footer .container {
    visibility: visible !important;
  }

/* extracted-index-style-3: mobile-nav-consistency-fix */
@media (max-width: 768px) {
  body.menu-open { overflow: hidden !important; }

  .site-header,
  .site-header.is-scrolled {
    height: 76px !important;
    background: rgba(8, 16, 31, 0.98) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    z-index: 1000 !important;
  }

  .nav-inner {
    width: min(100% - 32px, 640px) !important;
    height: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .brand {
    min-width: 0 !important;
    flex: 0 1 auto !important;
  }

  .brand-logo {
    width: 142px !important;
    height: 52px !important;
    object-fit: contain !important;
  }

  .nav-cta {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
    margin-left: auto !important;
    border-radius: 10px !important;
    color: #fff !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    z-index: 1002 !important;
  }

  .menu-toggle span {
    width: 20px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    border-radius: 99px !important;
    background: currentColor !important;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
  }

  .nav-links {
    position: fixed !important;
    top: 76px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    max-height: calc(100vh - 76px) !important;
    overflow-y: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    gap: 0 !important;
    padding: 18px 28px 28px !important;
    background: rgba(8, 16, 31, 0.98) !important;
    box-shadow: 0 24px 55px rgba(0,0,0,0.32) !important;
    text-align: left !important;
    transform: translateY(-110%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.24s ease, opacity 0.2s ease, visibility 0.2s ease !important;
    z-index: 999 !important;
  }

  body.menu-open .nav-links,
  .menu-open .nav-links {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: grid !important;
  }

  .nav-links a,
  .site-header.is-scrolled .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 15px 0 !important;
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
    color: rgba(255,255,255,0.78) !important;
    text-align: left !important;
    letter-spacing: 0.04em !important;
  }

  .nav-links a.is-active,
  .nav-links a:hover {
    color: #fff !important;
    font-weight: 700 !important;
  }

  .nav-links a::after {
    left: 0 !important;
    right: auto !important;
    bottom: 7px !important;
    transform: none !important;
  }

  .nav-links a.is-active::after {
    width: 32px !important;
  }

  .hero,
  .page-hero {
    padding-top: 128px !important;
  }
}

@media (max-width: 420px) {
  .site-header,
  .site-header.is-scrolled {
    height: 72px !important;
  }

  .nav-inner {
    width: calc(100% - 28px) !important;
  }

  .brand-logo {
    width: 136px !important;
    height: 48px !important;
  }

  .menu-toggle {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }

  .nav-links {
    top: 72px !important;
    max-height: calc(100vh - 72px) !important;
    padding: 16px 24px 26px !important;
  }

  .hero,
  .page-hero {
    padding-top: 118px !important;
  }
}

/* extracted-index-style-4: home-news-layout-fix */
#news .news-panel {
    align-items: start !important;
  }

  #news .news-feature {
    height: 430px !important;
    min-height: 430px !important;
    align-self: start !important;
  }

  #news .news-list {
    display: block !important;
    min-height: auto !important;
    padding: 34px 40px 34px 0 !important;
  }

  #news .news-item {
    justify-content: flex-start !important;
    padding: 24px 0 !important;
    min-height: auto !important;
  }

  #news .news-item:first-child {
    padding-top: 0 !important;
  }

  #news .news-item:last-child {
    padding-bottom: 0 !important;
  }

  #news .news-item h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #news .news-item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  @media (max-width: 900px) {
    #news .news-feature {
      height: auto !important;
      min-height: 320px !important;
    }

    #news .news-list {
      padding: 28px !important;
    }
  }

/* extracted-index-style-5: home-news-white-gap-fix */
#news .news-panel {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    align-items: start !important;
  }

  #news .news-feature {
    height: 430px !important;
    min-height: 430px !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden !important;
  }

  #news .news-list {
    background: #fff !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow) !important;
    padding: 34px 40px !important;
  }

  @media (max-width: 900px) {
    #news .news-panel {
      display: block !important;
    }

    #news .news-feature {
      height: auto !important;
      min-height: 320px !important;
      margin-bottom: 24px !important;
    }

    #news .news-list {
      padding: 28px !important;
    }
  }

/* extracted-index-style-6: home-news-equal-fixed-height-fix */
#news {
    --home-news-fixed-height: 520px;
  }

  #news .news-panel {
    align-items: start !important;
  }

  #news .news-feature,
  #news .news-list {
    height: var(--home-news-fixed-height) !important;
    min-height: 0 !important;
    max-height: var(--home-news-fixed-height) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  #news .news-feature {
    display: flex !important;
    align-items: flex-end !important;
    padding: 42px !important;
  }

  #news .news-feature h3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  #news .news-feature p {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  #news .news-list {
    display: grid !important;
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
    align-content: stretch !important;
    padding: 34px 40px !important;
  }

  #news .news-item {
    min-height: 0 !important;
    justify-content: flex-start !important;
    padding: 20px 0 !important;
    overflow: hidden !important;
  }

  #news .news-item:first-child {
    padding-top: 0 !important;
  }

  #news .news-item:last-child {
    padding-bottom: 0 !important;
  }

  #news .news-item h3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin-top: 0 !important;
  }

  #news .news-item p {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  @media (max-width: 900px) {
    #news {
      --home-news-fixed-height: auto;
    }

    #news .news-feature,
    #news .news-list {
      height: auto !important;
      max-height: none !important;
    }

    #news .news-feature {
      min-height: 320px !important;
      padding: 32px !important;
    }

    #news .news-list {
      display: block !important;
      padding: 28px !important;
    }
  }

/* extracted-index-style-7: home-news-side-scroll-fix */
#news {
    --home-news-fixed-height: 520px;
  }

  #news .news-panel {
    align-items: start !important;
    gap: 42px !important;
  }

  #news .news-feature,
  #news .news-list {
    height: var(--home-news-fixed-height) !important;
    max-height: var(--home-news-fixed-height) !important;
    min-height: 0 !important;
    box-sizing: border-box !important;
  }

  #news .news-list {
    display: block !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 28px 34px !important;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 99, 255, .45) rgba(226, 236, 249, .9);
  }

  #news .news-list::-webkit-scrollbar {
    width: 6px;
  }

  #news .news-list::-webkit-scrollbar-track {
    background: rgba(226, 236, 249, .9);
    border-radius: 999px;
  }

  #news .news-list::-webkit-scrollbar-thumb {
    background: rgba(0, 99, 255, .45);
    border-radius: 999px;
  }

  #news .news-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 99, 255, .7);
  }

  #news .news-item {
    display: block !important;
    min-height: auto !important;
    padding: 18px 0 !important;
    overflow: visible !important;
  }

  #news .news-item:first-child {
    padding-top: 0 !important;
  }

  #news .news-item:last-child {
    padding-bottom: 0 !important;
  }

  #news .news-item .news-meta,
  #news .news-meta {
    margin-bottom: 10px !important;
    gap: 10px !important;
  }

  #news .news-item h3 {
    margin: 0 0 8px !important;
    font-size: 21px !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  #news .news-item p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  #news .news-item + .news-item {
    border-top: 1px solid var(--line) !important;
  }

  #news .news-item {
    border-bottom: 0 !important;
  }

  #news .news-list-empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 15px;
  }

  @media (max-width: 900px) {
    #news .news-feature,
    #news .news-list {
      height: auto !important;
      max-height: none !important;
    }

    #news .news-list {
      overflow: visible !important;
      padding: 24px !important;
    }

    #news .news-item {
      padding: 18px 0 !important;
    }
  }

/* extracted-index-style-8: targeted-news-case-visual-fix */
#news .news-feature.has-image{
    background:#0b1220!important;
  }
  #news .news-feature .news-feature-bg{
    position:absolute;
    inset:0;
    z-index:0;
    background-size:cover;
    background-position:center;
    transform:scale(1.01);
  }
  #news .news-feature.has-image::before{
    z-index:1;
    background-image:linear-gradient(180deg,rgba(5,12,28,.16) 0%,rgba(5,12,28,.50) 58%,rgba(5,12,28,.74) 100%)!important;
    background-size:auto!important;
    opacity:1!important;
    mask-image:none!important;
  }
  #news .news-feature.has-image::after{
    display:none!important;
  }
  #news .news-feature.has-image .news-feature-content{
    z-index:2;
    text-shadow:0 8px 24px rgba(0,0,0,.30);
  }
  .case-card .case-media::before,
  .case-card .case-media::after,
  .case-card::after{
    display:none!important;
    opacity:0!important;
  }
  .case-card .case-media,
  .case-card:hover .case-media{
    filter:none!important;
  }
  .case-card .case-body{
    left:16px!important;
    right:16px!important;
    bottom:16px!important;
    height:auto!important;
    min-height:136px;
    padding:18px 18px 16px!important;
    border-radius:20px;
    background:linear-gradient(180deg,rgba(6,14,30,.40),rgba(6,14,30,.84));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 16px 32px rgba(7,17,34,.18);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    transform:translateY(0)!important;
    opacity:1!important;
  }
  .case-card .case-body h3{
    margin:12px 0 8px!important;
    color:#fff!important;
    font-size:18px!important;
    line-height:1.45!important;
    font-weight:800!important;
    text-shadow:none!important;
    -webkit-text-stroke:0 transparent!important;
    letter-spacing:0!important;
  }
  .case-card .case-body p{
    margin:0!important;
    max-width:none!important;
    color:rgba(255,255,255,.84)!important;
    font-size:14px!important;
    line-height:1.7!important;
    opacity:1!important;
    transform:none!important;
    text-shadow:none!important;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .case-card .case-tag{box-shadow:0 10px 22px rgba(0,0,0,.12);}
  @media (max-width:768px){
    .case-card .case-body{left:12px!important;right:12px!important;bottom:12px!important;min-height:124px;padding:16px 16px 14px!important;border-radius:16px;}
    .case-card .case-body h3{font-size:17px!important;}
    .case-card .case-body p{font-size:13px!important;}
  }

/* extracted-index-style-9: case-home-text-clean-fixed */
#cases .case-card .case-media::before{content:""!important;position:absolute!important;inset:0!important;display:block!important;opacity:1!important;background:linear-gradient(180deg,rgba(6,14,30,0) 0%,rgba(6,14,30,.08) 32%,rgba(6,14,30,.46) 58%,rgba(6,14,30,.78) 76%,rgba(6,14,30,.92) 100%)!important;}
  #cases .case-card .case-media::after{content:""!important;position:absolute!important;inset:0!important;display:block!important;opacity:1!important;background:linear-gradient(135deg,rgba(0,99,255,.08),rgba(0,99,255,0) 56%)!important;}
  #cases .case-card::after{display:none!important;}
  #cases .case-card .case-body{left:0!important;right:0!important;bottom:0!important;height:154px!important;min-height:154px!important;padding:24px 24px 22px!important;border-radius:0!important;background:none!important;border:0!important;box-shadow:none!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;transform:none!important;opacity:1!important;display:flex!important;flex-direction:column!important;align-items:flex-start!important;}
  #cases .case-card .case-tag{background:#0063ff!important;color:#fff!important;box-shadow:none!important;margin:0 0 10px!important;}
  #cases .case-card h3{margin:0 0 8px!important;color:#fff!important;text-shadow:none!important;-webkit-text-stroke:0!important;filter:none!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}
  #cases .case-card p{margin:0!important;color:#fff!important;opacity:.92!important;text-shadow:none!important;-webkit-text-stroke:0!important;filter:none!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}

/* extracted-index-style-10: cms-final-no-blank-style */
html.cms-dynamic-loading .nav-links,
html.cms-dynamic-loading .nav-cta,
html.cms-dynamic-loading .hero-copy,
html.cms-dynamic-loading .page-hero .container,
html.cms-dynamic-loading .section-block > .container,
html.cms-dynamic-loading .site-footer .container { visibility: visible !important; opacity: 1 !important; }
.reveal { opacity: 1 !important; transform: none !important; }
.page-hero .container, .hero-copy, main .container { visibility: visible !important; opacity: 1 !important; }

/* extracted-index-style-11: breadcrumb-title-white-final */
/* breadcrumb-title-white-final */
.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.service-page-hero .breadcrumb,
.service-page-hero .breadcrumb a,
.detail-hero .breadcrumb,
.detail-hero .breadcrumb a {
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 700 !important;
}
.page-hero .breadcrumb .sep,
.service-page-hero .breadcrumb .sep,
.detail-hero .breadcrumb .sep {
  color: #fff !important;
  opacity: .92 !important;
}
/* /breadcrumb-title-white-final */

/* extracted-index-style-12: home-section-desc-and-cta-size-fix */
/* 首页板块标题：后台“说明文字”要在前台标题下方显示 */
  #services .section-head > div,
  #products .section-head > div,
  #cases .section-head > div,
  #news .section-head > div,
  #partners .section-head > div {
    display: block !important;
    min-width: 0 !important;
  }
  #services .section-head p,
  #products .section-head p,
  #cases .section-head p,
  #news .section-head p,
  #partners .section-head p {
    display: block !important;
    margin: 18px 0 0 !important;
    max-width: 620px !important;
    color: var(--muted) !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
  }
  /* 首页首屏两个按钮统一尺寸：预约方案咨询 / 查看案例 */
  .hero-actions a:first-child,
  .hero-actions a:last-child {
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 180px !important;
    min-height: 60px !important;
    height: 60px !important;
    padding: 0 34px !important;
    border-radius: 999px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

/* extracted-index-style-13: detail-breadcrumb-card-2line-final */
.product-dynamic-hero .detail-breadcrumb,.service-detail-top-hero .detail-breadcrumb,.service-dynamic-hero .detail-breadcrumb{display:flex!important;align-items:center!important;gap:8px!important;margin-bottom:24px!important}.product-dynamic-hero .detail-breadcrumb a,.service-detail-top-hero .detail-breadcrumb a,.service-dynamic-hero .detail-breadcrumb a{color:#fff!important;opacity:1!important;font-weight:700!important;text-decoration:none!important}.product-dynamic-hero .detail-breadcrumb .sep,.service-detail-top-hero .detail-breadcrumb .sep,.service-dynamic-hero .detail-breadcrumb .sep{color:#fff!important;opacity:.92!important}.case-card .case-summary-scroll p,.related-case-grid .related-case-card .case-summary-scroll p{display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}

/* extracted-index-style-14: case-card-hover-reveal-final */
/* 案例卡片悬停展开：默认只显示标签+标题，悬停后整组上移并显示两行描述 */
#cases .case-card .case-body,
.case-list-section .case-card .case-body{
  height:168px!important;
  min-height:168px!important;
  padding:20px 24px 22px!important;
  transform:translateY(50px)!important;
  transition:transform .30s cubic-bezier(.22,.61,.36,1)!important;
  will-change:transform;
}
#cases .case-card .case-summary-scroll,
.case-list-section .case-card .case-summary-scroll{
  width:100%!important;
  height:48px!important;
  min-height:48px!important;
  max-height:48px!important;
  overflow:hidden!important;
}
#cases .case-card .case-summary-scroll p,
.case-list-section .case-card .case-summary-scroll p{
  margin:0!important;
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  line-height:1.65!important;
  opacity:0!important;
  transform:translateY(10px)!important;
  transition:opacity .22s ease .04s,transform .22s ease .04s!important;
}
#cases .case-card:hover .case-body,
#cases .case-card:focus-visible .case-body,
.case-list-section .case-card:hover .case-body,
.case-list-section .case-card:focus-visible .case-body{
  transform:translateY(0)!important;
}
#cases .case-card:hover .case-summary-scroll p,
#cases .case-card:focus-visible .case-summary-scroll p,
.case-list-section .case-card:hover .case-summary-scroll p,
.case-list-section .case-card:focus-visible .case-summary-scroll p{
  opacity:.92!important;
  transform:translateY(0)!important;
}
#cases .case-card:hover,
.case-list-section .case-card:hover{
  transform:translateY(-5px)!important;
  box-shadow:0 22px 44px rgba(13,20,38,.14)!important;
}
@media (hover:none),(pointer:coarse){
  #cases .case-card .case-body,
  .case-list-section .case-card .case-body{transform:translateY(0)!important;}
  #cases .case-card .case-summary-scroll p,
  .case-list-section .case-card .case-summary-scroll p{opacity:.92!important;transform:none!important;}
}
@media (max-width:768px){
  #cases .case-card .case-body,
  .case-list-section .case-card .case-body{height:160px!important;min-height:160px!important;padding:18px 20px 20px!important;}
  #cases .case-card .case-summary-scroll,
  .case-list-section .case-card .case-summary-scroll{height:44px!important;min-height:44px!important;max-height:44px!important;}
}

/* extracted-index-style-15: breadcrumb-pale-white-20260712 */
.page-hero .breadcrumb,.service-page-hero .breadcrumb,.detail-hero .breadcrumb{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.page-hero .breadcrumb a,.service-page-hero .breadcrumb a,.detail-hero .breadcrumb a{color:rgba(255,255,255,.74)!important;opacity:1!important;text-decoration:none!important;transition:color .18s ease}
.page-hero .breadcrumb a:hover,.service-page-hero .breadcrumb a:hover,.detail-hero .breadcrumb a:hover{color:#fff!important}
.page-hero .breadcrumb .sep,.service-page-hero .breadcrumb .sep,.detail-hero .breadcrumb .sep{color:rgba(255,255,255,.52)!important;opacity:1!important}
.detail-breadcrumb .breadcrumb-current{color:rgba(255,255,255,.68)!important;opacity:1!important}

/* extracted-index-style-16: responsive-footer-unified-layout */
@media (max-width: 1024px) {
      .site-footer .footer-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 32px !important;
        align-items: start !important;
        justify-content: stretch !important;
      }

      .site-footer .footer-grid > div:first-child {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        justify-self: stretch !important;
        transform: none !important;
        text-align: left !important;
      }

      .site-footer .footer-grid > div:first-child .brand {
        justify-content: flex-start !important;
      }

      .site-footer .footer-grid > div:first-child .footer-desc {
        margin-top: 14px !important;
        text-align: left !important;
      }

      .site-footer .qr-wrap {
        display: flex !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: clamp(32px, 10vw, 56px) !important;
        transform: none !important;
      }

      .site-footer .qr-wrap .qr-item,
      .site-footer .qr-wrap .qr-item + .qr-item {
        margin: 0 !important;
        align-items: center !important;
      }

      .site-footer .footer-grid > .footer-col:last-child {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        justify-self: stretch !important;
        transform: none !important;
        text-align: left !important;
      }

      .site-footer .footer-grid > .footer-col:last-child h3 {
        text-align: left !important;
      }

      .site-footer .footer-grid > .footer-col:last-child > a,
      .site-footer .footer-grid > .footer-col:last-child > span {
        justify-content: flex-start !important;
        text-align: left !important;
      }
    }
