/* 在 .vitepress/theme/style.css 中添加 */
.aibee-loader-options-table table {
  width: 100%; /* 强制表格占满容器宽度 */
  table-layout: auto; /* 允许列宽自适应调整 */
}

/* 针对特定列设置最小宽度 */
.aibee-loader-options-table td:nth-child(1), /* 参数列 */
.aibee-loader-options-table td:nth-child(2), /* 类型列 */
.aibee-loader-options-table td:nth-child(3) { /* 说明列 */
  min-width: 150px; /* 设置最小宽度 */
}

/* 防止长内容被截断 */
.aibee-loader-options-table td {
  word-break: break-word; /* 允许单词内断行 */
  white-space: normal !important; /* 强制正常换行 */
}