/* 手机端适配：屏幕宽度小于768px时生效 */
@media (max-width: 768px) {
  /* 外层表格容器取消宽度限制，自适应屏幕 */
  #vsb_content table {
    width: 100% !important;
    border-collapse: collapse !important;
    table-layout: auto !important;
  }

  /* 表头标题行通栏，字号缩小 */
  #vsb_content table tr.firstRow td {
    width: 100% !important;
    font-size: 14px !important;
    padding: 8px 5px !important;
  }

  /* 单元格取消固定72px宽，改为自适应，加宽内边距 */
  #vsb_content table td {
    width: auto !important;
    height: auto !important;
    padding: 6px 3px !important;
    font-size: 14px !important;
    word-break: break-all; /* 名字过长自动换行 */
  }

  /* 优化教师名字格子，宽松排版 */
  #vsb_content table tbody td {
    min-width: 10px;
  }

  #vsb_content table tbody td  *{
        text-indent: 0;
 }

}