TABLE{ min-width: 80%;margin-left: auto;
        margin-right: auto;} 
img {
  max-width: 100% !important; 
  height: auto !important;}


@media (max-width: 768px) {
  .table-container {
    overflow-x: auto; /* 允许横向滚动 */
    -webkit-overflow-scrolling: touch; /* 优化移动端滚动 */
    width: 95vw; /* 撑满视口宽度 */
    margin-left: -15px;}
  
  table {
    min-width: 600px; /* 保持表格最小宽度 */
    width: auto !important;}
}
