/* 右侧固定广告位 */
.ad-sidebar {
    position: fixed;
    top: 60px; /* 根据头部高度调整 */
    right: 20px;
    width: 160px; /* 标准广告位宽度 */
    z-index: 999;
  }
  
  /* 主内容右侧留出广告空间 */
  .main-content-wrapper {
    position: relative;
    margin-right: 200px; /* 广告宽度 + 边距 */
  }
  
  /* 移动端隐藏侧边广告 */
  @media screen and (max-width: 768px) {
    .ad-sidebar { display: none; }
    .main-content-wrapper { margin-right: 0; }
  }