/* 标题块：标题 + 橙色短线 */
/* ====== 容器与布局 ====== */
  .p-hero{
    background:#fff;
    padding: 34px 0 48px;
  }
  .p-hero__inner{
    position: relative;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 64px;
    align-items: center;
  }

  /* ====== 左侧：卡片（边框 + 圆角 + 右下偏移阴影） ====== */
  .p-hero__card{
    position: relative;
    border-radius: 18px;
    border: 1px solid #e3e3e3;
    background: #fff;
    /* 右下“硬阴影” + 少量柔化（更像截图） */
    box-shadow:
      6px 6px 0 rgba(173, 173, 173, 0.18),
      0 18px 30px rgba(0,0,0,.06);
    overflow: hidden;
  }
  .p-hero__cardInner{
    padding: 34px 34px 30px;
    background:#fff;
  }
  .p-hero__img{
    display:block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ====== 右侧：文字区 ====== */
  .p-hero__content{ max-width: 520px; }
  .p-hero__flag{
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .p-hero__title{
    margin: 0;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
    color: #111;
    letter-spacing: .2px;
  }
  .p-hero__subtitle{
    margin-top: 16px;
    font-size: 24px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
  }
  .p-hero__bar{
    width: 64px;
    height: 4px;
    background: #f37a1f;
    border-radius: 2px;
    margin: 18px 0 26px;
  }
  .p-hero__desc{
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
  }
  .p-hero__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 34px;
    border-radius: 10px;
    border: 1px solid #f37a1f;
    color: #444;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .2px;
    transition: all .18s ease;
  }
  .p-hero__btn:hover{
    background: rgba(243,122,31,.06);
    transform: translateY(-1px);
  }

 

  /* ====== 响应式：窄屏改为上下布局 ====== */
  @media (max-width: 1024px){
    .p-hero__inner{
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .p-hero__content{
      max-width: none;
    }
    .p-hero__deco{
      right: 10px;
      bottom: -6px;
      transform: scale(.92);
      transform-origin: right bottom;
    }
  }

  @media (max-width: 520px){
    .p-hero{ padding: 22px 0 34px; }
    .p-hero__cardInner{ padding: 22px; }
    .p-hero__title{ font-size: 34px; }
    .p-hero__subtitle{ font-size: 18px; }
    .p-hero__desc{ font-size: 16px; }
    .p-hero__btn{ height: 48px; padding: 0 22px; font-size: 16px; }
    .p-hero__deco{ display:none; } /* 手机端可隐藏，避免拥挤 */
  }





