
/* 表格外层容器：自适应横向滚动 */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 10px 0;
}

/* 表格基础样式 */
.deburr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

/* 表头 */
.deburr-table th {
  background: #162A9F;
  color: #fff;
  font-size: 18px;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
}

/* 单元格 */
.deburr-table td {
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  vertical-align: top;
}

/* 高亮本行（高压水射流） */
.deburr-table .highlight td {
  background-color: #f0f4ff;
  color: #162A9F;
  font-weight: 500;
}
