.sw-block * {
    box-sizing: border-box;
  }

  .sw-block .hero {
    position: relative;
    background: url('/eportal/fileDir/bjhrb/resource/cms/2025/08/img_pc_site/2025082118061333357.png') 50% 30%/cover no-repeat;
    height: clamp(240px, 26vw, 500px);
    isolation: isolate;
    /* 防止内部定位层叠影响到外部 */
  }

  .sw-block .hero__tint {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .18)
  }

  .sw-block .hero__fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, .82) 88%, #fff 100%)
  }

  .sw-block .hero__inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0 3%
  }


  .sw-block .content {
    background: #fff;
    margin: 20px 0px;
  }

  .sw-block .card {
    width: 65%;
    margin: 0 auto 0rem;
    /* 末尾增加外边距给底部组件留空间 */
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    padding: 3.5% 4%;
    word-break: break-word;
    font-size: 16px;
  }

  .sw-block .card a {
    word-break: break-all;
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  /* 渐变线 + 标题 */
  .sw-block .headline-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
  }

  .sw-block .headline-wrap::before,
  .sw-block .headline-wrap::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #7a6244, transparent);
  }

  .sw-block .headline {
    margin: 0 1.2rem;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 800;
    color: #5c4732;
    white-space: nowrap;
  }

  /* ！！把全局的 p / a 改为局部作用，避免影响 footer 文案和链接样式 */
  .sw-block p {
    text-indent: 2em;
  }

  .sw-block .intro {
    color: #2a2a2a;
    line-height: 1.8;
    margin: 0 0 1.2rem;
  }

  .sw-block .section {
    margin: 1.2rem 0 1.6rem;
    color: #111
  }

  .sw-block .section-title {
    position: relative;
    padding-left: .8rem;
    font-weight: 700;
    font-size: 1.1rem
  }

  .sw-block .section-title::before {
    content: "";
    width: .28rem;
    height: 1.1rem;
    background: #ca3b2e;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: .1rem
  }

  .sw-block .section p {
    margin: .45rem 0;
    line-height: 1.7;
    color: #374151
  }

  .sw-block a {
    text-decoration: none;
    color: #0b63d8
  }

  .sw-block a:hover {
    text-decoration: underline
  }

  /* 响应式 */
  @media (max-width:1024px) {
    .sw-block .card {
      width: 92%;
      padding: 4.5% 5%
    }
  }

  @media (max-width:768px) {
    .sw-block .hero {
      height: clamp(220px, 48vw, 380px)
    }

    /* 移动端不再使用负 margin，避免与 footer 发生重叠 */
    .sw-block .card {
      width: 94%;
      margin: 1rem auto 2.5rem;
      padding: 5.5% 6%;
      border-radius: 14px
    }

    .sw-block .headline {
      font-size: clamp(18px, 4vw, 26px)
    }
  }