/* 强制容器自适应屏幕 */
body { width: 100% !important; overflow-x: hidden !important; }
.container, .wrapper, #main { 
  width: 100% !important; 
  max-width: 100% !important;  /* 覆盖固定max-width */
  padding: 0 10px !important;   /* 避免内容贴边 */
  margin: 0 auto !important;
}

/* 图片/视频强制自适应 */
img, video, iframe { 
  max-width: 100% !important; 
  height: auto !important;     /* 防止拉伸变形 */
}

/* 表格横向滚动（避免挤成一团） */
table { 
  width: 100% !important; 
  display: block !important; 
  overflow-x: auto !important; 
}

/* 移除硬编码的宽度样式 */
[style*="width:"], [style*="min-width:"] {
  width: 100% !important;
  min-width: auto !important;
}