/* 全局表格圆角样式 */
table {
  border-collapse: separate; /* 关键：允许圆角 */
  border-spacing: 0;        /* 消除单元格间距 */
  border: 1px solid #e0e0e0;
  border-radius: 12px;      /* 四面圆角 */
  overflow: hidden;         /* 裁剪溢出内容 */
  width: 100%;
  margin: 16px 0;
}

/* 表头圆角处理 */
thead tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
thead tr:first-child th:last-child {
  border-top-right-radius: 12px;
}

/* 表尾圆角处理 */
tfoot tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
tfoot tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}