/* 缩小前4列，增加第5列（诊断时间）宽度 */
.admin-management-table__head,
.admin-management-table__row {
  grid-template-columns: minmax(150px,1.1fr) minmax(90px,0.8fr) minmax(120px,0.9fr) minmax(130px,1fr) 150px 80px 80px 100px !important;
}

/* 针对诊断时间列（第5列），防止文字被省略 */
.admin-management-table__cell:nth-child(5) {
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
}
