/* v12：只优化 PC 首页/详情页广告上移和广告加载空白；播放器页不处理 */

/* 广告不再等待 load 才显示，避免半天一块空白 */
.site-ad-home .site-ad-img,
.site-ad-detail .site-ad-img{
  opacity:1!important;
  transition:none!important;
  visibility:visible!important;
  display:block!important;
}

.site-ad-home,
.site-ad-detail{
  background:linear-gradient(135deg,rgba(255,193,7,.13),rgba(255,255,255,.045))!important;
  min-height:0!important;
}

.site-ad-home .js-site-ad-link,
.site-ad-detail .js-site-ad-link{
  background:transparent!important;
}

/* 广告图片没加载出来前也保留自然比例，但不出现额外巨大空隙 */
.site-ad-home img,
.site-ad-detail img{
  width:100%!important;
  height:auto!important;
  aspect-ratio:4/1!important;
  object-fit:cover!important;
  object-position:center!important;
  background:transparent!important;
}

@media(min-width:768px){
  /* PC 首页：幻灯片和首页广告之间整体再上移一点 */
  body.page-home .custom-banner,
  body.page-home .banner-container{
    margin-bottom:8px!important;
  }
  body.page-home .site-ad-home{
    margin-top:-8px!important;
    margin-bottom:14px!important;
  }

  /* PC 详情页：广告位轻微上移，不影响播放页 */
  body.page-detail .col-lg-wide-75 > .stui-pannel:first-child{
    margin-bottom:10px!important;
  }
  body.page-detail .site-ad-detail{
    margin-top:-2px!important;
    margin-bottom:14px!important;
  }
}

@media(max-width:767px){
  /* 保留 v11 的移动端间距，只去掉广告加载空白感 */
  body.page-home .site-ad-home,
  body.page-detail .site-ad-detail{
    background:linear-gradient(135deg,rgba(255,193,7,.12),rgba(255,255,255,.04))!important;
  }
}
