  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Microsoft YaHei", sans-serif
  }

  :root {
      --nkm-blue: rgb(60 60 59);
      --nkm-orange: #F37A20;
      --nkm-light: #E8F0F9;
      --nkm-gray: #f5f7fa
  }

  body {
      min-width: 320px;
      background: #fff
  }

  /* 导航栏恢复你原来的样式 */
  header {
      background: var(--nkm-blue);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1)
  }

  .nav {
      max-width: 90%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px
  }

  .logo-box {
      display: flex;
      align-items: center;
      gap: 12px;
      background-color: #ffffff;
      height: 80px;
    }

    .logo-img {
      height: 80px;
      width: auto;
      display: block;
      padding: 10px 25px 10px 25px;
    }

  .logo-text {
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      white-space: nowrap
  }

  .nav-menu {
      display: flex;
      gap: 28px
  }

  .nav-menu a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s
  }

  .nav-menu a:hover {
      color: var(--nkm-orange)
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 5%
  }

  .page-title {
      font-size: 32px;
      color: var(--nkm-blue);
      margin-bottom: 12px
  }

  .page-sub {
      font-size: 16px;
      color: #666;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eee
  }

  /* 客户案例新排版：左Logo + 右介绍 */
  .customer-list {
      display: flex;
      flex-direction: column;
      gap: 24px
  }

  .customer-item {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: 0.3s
  }

  .customer-item:hover {
      border-color: var(--nkm-orange);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08)
  }

  /* 左侧小Logo */
  .customer-logo {
      width: 100px;
      height: 100px;
      object-fit: contain;
      flex-shrink: 0
  }

  /* 右侧文字介绍 */
  .customer-info {
      flex: 1
  }

  .customer-name {
      font-size: 18px;
      color: var(--nkm-blue);
      font-weight: 600;
      margin-bottom: 8px
  }

  .customer-desc {
      font-size: 14px;
      color: #666;
      line-height: 1.6
  }

  .footer-top {
      background: var(--nkm-blue);
      color: #fff;
  }

  .footer-row {
      max-width: 1400px;
      margin: 0 auto;
      padding: 50px 5%;
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
  }

  .footer-col {
      flex: 1;
      min-width: 260px;
  }

  .footer-col h4 {
      font-size: 20px;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--nkm-orange);
      display: inline-block;
  }

  .footer-col p {
      margin-bottom: 10px;
      line-height: 1.7;
  }

  .footer-col a {
      color: #fff;
      text-decoration: none;
  }

  .footer-col a:hover {
      color: var(--nkm-orange);
  }

  footer {
      background: var(--nkm-blue);
      color: #fff;
      text-align: center;
      padding: 24px 5%;
      font-size: 14px
  }

  a {
      text-decoration: none;
  }