:root {
      --blue: #00c9ff;
      --purple: #7e5bef;
      --light-bg: #ffffff;
      --text-dark: #1a1a2e;
      --gray: #555;
    }

    .wzjs-body {
      /* background-color: var(--light-bg); */
      background-color: rgba(180, 129, 255, 0.1);
      color: var(--text-dark);
      font-family: 'Exo 2', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    /* 背景装饰 */
    .wzjs-bg-deco {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
      opacity: 0.03;
    }

    .wzjs-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* 标题区 */
    .wzjs-hero {
      text-align: center;
      padding: 100px 0 80px;
      position: relative;
    }

    .wzjs-hero h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4rem);
      background: linear-gradient(90deg, var(--blue), var(--purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(30px);
    }

    .wzjs-hero p {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.2rem;
      color: var(--gray);
      opacity: 0;
      transform: translateY(30px);
    }

    /* 服务流程 */
    .wzjs-section {
      padding: 80px 0;
    }

    .wzjs-section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .wzjs-section-title h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.2rem;
      display: inline-block;
      background: linear-gradient(90deg, var(--blue), var(--purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 10px;
    }

    .wzjs-section-title .en {
      color: var(--gray);
      font-size: 1rem;
      letter-spacing: 3px;
    }

    /* 流程时间轴 */
    .wzjs-timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px 0;
    }

    .wzjs-timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, var(--blue), var(--purple));
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
      z-index: 1;
    }

    .wzjs-timeline-item {
      position: relative;
      width: calc(50% - 40px);
      margin: 30px 0;
      opacity: 0;
      z-index: 2;
    }

    .wzjs-timeline-item.left {
      float: left;
      clear: left;
      text-align: right;
    }

    .wzjs-timeline-item.right {
      float: right;
      clear: right;
      text-align: left;
    }

    .wzjs-timeline-content {
      background: white;
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .wzjs-timeline-item.right .wzjs-timeline-content {
      align-items: flex-end;
    }

    .wzjs-icon-box {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(0, 201, 255, 0.1), rgba(126, 91, 239, 0.1));
      border-radius: 14px;
    }

    .wzjs-icon-box svg {
      width: 28px;
      height: 28px;
      stroke: var(--purple);
      fill: none;
      stroke-width: 1.8;
    }

    .wzjs-timeline-content h3 {
      font-family: 'Orbitron', sans-serif;
      color: var(--blue);
      margin: 0;
      font-size: 1.2rem;
    }

    .wzjs-timeline-content p {
      font-size: 1rem;
      color: var(--gray);
      margin: 0;
    }

    .wzjs-timeline-dot {
      position: absolute;
      width: 24px;
      height: 24px;
      background: var(--purple);
      border: 4px solid white;
      border-radius: 50%;
      top: 30px;
      z-index: 3;
    }

    .wzjs-timeline-item.left .wzjs-timeline-dot {
      right: -12px;
    }

    .wzjs-timeline-item.right .wzjs-timeline-dot {
      left: -12px;
    }

    /* 新增：连接线容器 */
    .wzjs-connector-line {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 30px;
      z-index: 1;
    }

    .wzjs-connector-line svg {
      width: 100%;
      height: 100%;
    }

    /* 行业解决方案 */
    .wzjs-industry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 28px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .wzjs-industry-card {
      background: white;
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0,0,0,0.06);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      opacity: 0;
      transform: scale(0.9);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .wzjs-industry-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(126, 91, 239, 0.1), transparent);
      transition: 0.5s;
    }

    .wzjs-industry-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 12px 30px rgba(126, 91, 239, 0.3);
    }

    .wzjs-industry-card:hover::before {
      left: 100%;
    }

    .wzjs-industry-icon {
      margin-bottom: 16px;
    }

    .wzjs-industry-icon svg {
      width: 48px;
      height: 48px;
      stroke: var(--purple);
      fill: none;
      stroke-width: 1.5;
    }

    .wzjs-industry-card h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.3rem;
      background: linear-gradient(90deg, var(--blue), var(--purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin: 0;
    }

    /* 动画控制 */
    .wzjs-animated {
      opacity: 1 !important;
      transform: none !important;
    }

    .wzjs-fade-in {
      animation: fadeIn 1s forwards;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* footer {
      text-align: center;
      padding: 40px;
      color: var(--gray);
      font-size: 1rem;
    } */

    @media (max-width: 768px) {
      .wzjs-timeline::before {
        left: 30px;
      }
      .wzjs-timeline-item {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        text-align: left !important;
      }
      .wzjs-timeline-item.left,
      .wzjs-timeline-item.right {
        float: none;
        clear: both;
      }
      .wzjs-timeline-dot {
        left: -34px !important;
        right: auto !important;
      }
      .wzjs-timeline-content {
        align-items: flex-start !important;
      }
      .wzjs-connector-line {
        display: none;
      }
    }