/* 详细数据页专用样式 */

/* 表格checkbox样式 */
.table input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: rgba(37,99,235,.8);
}

/* 表格操作按钮样式 */
.table .btn {
  padding: 4px 8px;
  font-size: 11px;
  margin: 0;
}

/* 表格行选中状态 */
.table tr.selected {
  background: rgba(37,99,235,.06);
}

/* 删除按钮样式优化 */
.table .btn.bad {
  transition: all .15s ease;
}

.table .btn.bad:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(239,68,68,.2);
}

