
  /* 强制将包含该自定义模块的外层所有父级容器宽度全部解除限制并铺满 */
  .custom-fullwidth-wrapper,
  .custom-fullwidth-wrapper * {
    box-sizing: border-box;
  }
  /* 向上穿透限制 */
  body:has(.custom-fullwidth-wrapper) .main_box,
  body:has(.custom-fullwidth-wrapper) .container,
  body:has(.custom-fullwidth-wrapper) .content,
  body:has(.custom-fullwidth-wrapper) .content_box,
  body:has(.custom-fullwidth-wrapper) .detail_box,
  body:has(.custom-fullwidth-wrapper) .page_main,
  body:has(.custom-fullwidth-wrapper) .article_detail {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* 核心全屏拉伸逻辑 */
  .custom-fullwidth-wrapper {
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    line-height: 0 !important;
    overflow: hidden !important;
    display: block !important;
  }
  .custom-fullwidth-wrapper img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }
