
    .homefo.homefo-resources .box .item .itembox .txt h3 {
        line-height: 28px;
        height: calc(1.5em * 2) !important;
    }
    /* 统计模块 */
    .statistics {
      background: #ffffff;
      padding: 40px 20px 0;
    }

    .statistics-container {
      max-width: 1440px;
      margin: 0 auto;
    }

    .statistics-list {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 30px;
    }

    .stat-item {
      flex: 1;
      text-align: center;
      padding: 20px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: #fff;
      border-radius: 16px;
      border: 1px solid #575D6C1A;
    }

    .stat-value {
      font-weight: bold;
      color: #0066FF;
      margin-bottom: 8px;
      letter-spacing: -1px;
    }

    .stat-label {
      color: #050539;
      line-height: 1.5;
      height: calc(2 * 1.5em);
    }

    /* 覆盖全规模企业模块 */
    .enterprise-modules {
      padding: 60px 20px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    .modules-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .modules-list {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      overflow: hidden;
      border-radius: 24px;
      min-height: 400px;
    }

    .module-card {
      flex: 1;
      min-width: calc(20% - 15px);
      max-width: calc(20% - 15px);
      position: relative;
      transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      height: 500px;
      border-radius: 24px;
      will-change: flex, max-width;
      contain: layout paint style;
    }

    .module-card .card-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .module-card .card-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .module-card.modules-active,
    .module-card:hover {
      flex: 0 0 calc(39% - 10px);
      max-width: calc(39% - 10px);
    }

    .module-card.modules-active .card-bg img,
    .module-card:hover .card-bg img {
      filter: brightness(0.7);
      transition: filter 0.3s ease;
    }

    .card-box {
        padding: 25px;
    }

    .card-header {
      position: relative;
      z-index: 4;
      flex-shrink: 0;
      color: #ffffff;
    }

    .enterprise-tag {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(255, 255, 255, 0.3);
      color: #fff;
      font-size: 14px;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .module-title {
      font-size: 30px;
      font-weight: bold;
      color: #fff;
      margin-bottom: 4px;
    }

    /* 未展开时隐藏副标题 */
    .module-subtitle {
      font-size: 16px;
      color: #fff;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 0;
      overflow: hidden;
    }

    .module-card.modules-active .module-subtitle,
    .module-card:hover .module-subtitle {
      opacity: 1;
      transform: translateY(0);
      height: auto;
      margin-bottom: 8px;
    }

    .card-contents {
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      color: #ffffff;
    }

    .module-card.modules-active .card-contents,
    .module-card:hover .card-contents {
      opacity: 1;
      transform: translateY(0);
      height: auto;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feature-list li {
      font-size: 16px;
      padding: 1px 0;
    }

    .feature-list li:last-child {
      border-bottom: none;
    }

    .card-footers {
      margin-top: 140px;
      position: relative;
      z-index: 5;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 0;
      overflow: hidden;
      flex-shrink: 0;
      width: 100%;
    }

    .module-card.modules-active .card-footers,
    .module-card:hover .card-footers {
      opacity: 1;
      transform: translateY(0);
      height: auto;
    }

    .footer-tags {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
    }

    .footer-tag {
      padding: 4px 0;
      color: #ffffff;
      font-size: 16px;
      display: flex;
      align-items: center;
    }

    .footer-icon {
      display: inline-block;
      width: 18px;
      height: 18px;
      margin-right: 8px;
    }

    .footer-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .footer-buttons {
      display: flex;
      gap: 10px;
      height: 46px;
    }

    .btn-primary {
      flex: 1;
      padding: 8px 12px;
      background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
      color: #ffffff;
      border: none;
      border-radius: 5px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-secondary {
      flex: 1;
      padding: 8px 12px;
      background: transparent;
      color: #ffffff;
      border: 1px solid #ffffff;
      border-radius: 5px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }

    /* 覆盖全规模企业模块 */

    /* 客户用例展示 */
    /* 轮播图容器 */
    .case_bg {
      background: url("/r/cms/www/default/2026Assets/image2026/case-bg.png") no-repeat;
      background-size: cover;
    }

    .case_bg .case h2 {
      color: #ffffff;
    }
    .carousel-container {
      max-width: 1440px;
      margin: 0 auto;
      position: relative;
      z-index: 5;
    }

    .carousel-wrapper {
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .carousel-slide {
      flex: 0 0 100%;
      padding: 60px 280px;
      text-align: center;
    }

    /* 引用内容 */
    .quote-content {
      color: #fff;
      line-height: 1.5;
      font-style: normal;
      margin-bottom: 35px;
      quotes: "" "";
      position: relative;
    }

    /* 作者信息 */
    .quote-author {
      color: #fff;
      opacity: 0.5;
      margin-bottom: 16px;
    }

    /* 阅读链接 */
    .read-more {
      display: inline-block;
      font-size: 14px;
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }

    .read-more::after {
      content: ' >';
      margin-left: 4px;
    }

    /* 切换按钮 */
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 35px;
      height: 35px;
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
      color: #cbd5e1;
      font-size: 16px;
      font-weight: 300;
      line-height: 1;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 6;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .carousel-prev {
      left: 5%;
    }

    .carousel-next {
      right: 5%;
    }

    /* 指示点 */
    .carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 35px;
    }

    .indicator {
      width: 22px;
      height: 8px;
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .indicator.active {
      width: 22px;
      border-radius: 5px;
      background: #fff;
    }
    /* 客户用例展示 */

    /* 开启您的AI原生企业管理之旅 */
    .ai-journey-section {
      background: url('/r/cms/www/default/2026Assets/image2026/connect_us_bg.png') no-repeat;
      background-size: cover;
      position: relative;
      overflow: hidden;
    }

    .ai-journey-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 4;
    }

    .ai-journey-title {
      font-weight: bold;
      color: #03053B;
      margin-bottom: 18px;
    }

    .ai-journey-desc {
      color: #03053B;
      margin-bottom: 32px;
      line-height: 36px;
    }

    .ai-journey-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 30px;
    }

    .ai-journey-btn {
      display: inline-block;
      width: 140px;
      height: 42px;
      line-height: 42px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    .ai-journey-btn-primary {
      background: linear-gradient(269deg, #1FABFF -21.46%, #06F 99.76%);
      color: #ffffff;
    }

    .ai-journey-btn-secondary {
      background: #ffffff;
      color: #0167FF;
      border: 1px solid #2F76F6;
    }

    .ai-journey-hint {
      color: #7B808C;
    }

    /* 开启您的AI原生企业管理之旅 */

    /* 响应式设计 */
    @media (max-width: 1640px) {
      .wrapper {
        width: 90%;
      }
      .modules-container {
        max-width: 90%;
      }
    }
    @media (max-width: 1024px) {

      .module-card.modules-active,
      .module-card:hover {
        flex: 0 0 55%;
        max-width: 55%;
      }

      .module-card:not(.modules-active):not(:hover) {
        flex: 0 0 calc(45% / 4);
        max-width: calc(45% / 4);
      }
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
      /* 统计模块移动端适配 */
      .statistics {
        padding: 30px 15px;
      }

      .statistics-container {
        max-width: 100%;
      }

      .statistics-list {
        flex-direction: column;
        gap: 0;
      }

      .stat-item {
        padding: 15px;
        flex: none;
      }

      .stat-value {
        margin-bottom: 6px;
      }

      .carousel-slide {
        padding: 40px 20px;
      }

      .quote-content {
        line-height: 1.2;
        margin-bottom: 25px;
      }

      .quote-author {
        margin-bottom: 12px;
      }

      /* 轮播图 */

      .carousel-nav {
        display: none;
      }

      .carousel-indicators {
        margin-top: 30px;
        gap: 12px;
      }

      .indicator {
        width: 18px;
        height: 6px;
        border-radius: 4px;
      }

      .indicator.active {
        width: 18px;
        border-radius: 4px;
      }
      /* AI之旅响应式 */
      .ai-journey-section {
        padding: 40px 15px;
      }

      .ai-journey-desc {
        font-size: 13px;
      }

      .ai-journey-buttons {
        flex-direction: column;
        gap: 12px;
      }

      .ai-journey-btn {
        padding: 12px 24px;
      }
    }

    /* 样式优化 */
    .colours-title {
      background: linear-gradient(270deg, #C581F8 -2.62%, #2F76F6 35.55%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .resources-center {
        padding: 0 4% !important;
        box-sizing: border-box;
    }
    .item_four_btn {
        margin-top: 12px;
        display: flex;
        gap: 15px;
        margin-bottom: 5px;
    }
    .four_btn {
        flex: 1;
        text-align: center;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 42px;
        box-sizing: border-box;
        cursor: pointer;
    }
    .four_btn_One {
        background-color: #fff;
        color: #03053B;
    }
    .four_btn_Two {
        border: 1px solid #fff;
        color: #fff;
    }
    .four_btn_Two span {
        display: inline-block;
        width: 24px;
        height: 24px;
    }
    .four_btn_Two span img {
        width: 100% !important;
        height: auto !important;
    }
    input:-webkit-autofill,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:hover {
      box-shadow: 0 0 0 1000px white inset !important;  /* 仅改变背景色为白色 */
      -webkit-text-fill-color: inherit;  /* 文字颜色保持原样，不强制改色 */
    }
    .card-contents ul li {
      display: flex;
      align-items: center;
      line-height: 28px;
    }
    .card-contents ul li::before {
      content: "";
      width: 20px;
      height: 16px;
      margin-right: 5px;
      display: inline-block;
      background: url('/r/cms/www/default/2026Assets/image2026/icon2.svg') no-repeat;
      background-size: contain;
    }
    .btn-suspend:hover:after {
      content: "\e683";
      margin-left: 5px;
    }
    .btn-suspend:after {
      transform: translateY(-1px);
      content: "";
      transition: all 0.4s ease;
      font-family: "iconfont";
      display: inline-block;
      vertical-align: middle;
    }
    .product-link a {
      min-width: 160px !important;
    }
    .product-link a.blue:first-child {
      background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%) !important;
    }