
  .funblias-news-gbe * { box-sizing: border-box; }

  .funblias-news-gbe {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 16px 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111827;
    line-height: 1.7;
  }

  .funblias-news-gbe p {
    margin: 14px 0;
    font-size: 16px;
    color: #374151;
  }

  /* 两张图并排 */
  .funblias-news-gbe .images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 26px 0 26px;
  }

  .funblias-news-gbe .images img {
    width: 100%;
    height: auto;      /* 原比例完整显示 */
    border-radius: 12px;
    background: #f9fafb;
    padding: 6px;
  }

  /* 手机端自动单列 */
  @media (max-width: 768px) {
    .funblias-news-gbe .images {
      grid-template-columns: 1fr;
    }
  }
