





























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































/* 每一行的容器 */
.dynamic-row {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  width: 100%; /* 确保不超出父级 */
}

/* 输入框组合容器 */
.input-group {
  display: flex;
  flex: 1; /* 占据剩余全部空间 */
  margin-right: 8px; /* 与按钮组的间距 */
}

/* 4:6 比例实现 */
.select-box {
  flex: 4;
  margin-right: 3px;
}
.input-box {
  flex: 7;
}

/* 按钮组固定宽度，防止被压缩或溢出 */
.button-group {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* 禁止缩小 */
  width: 70px; /* 根据两个按钮的宽度设定 */
  justify-content: space-between;
}
.bold-header-table ::v-deep .el-table__header-wrapper th .cell {
  font-weight: bold;
  color: #333 !important;
}
.header-input {
  margin-top: 10px;
}
.two-row-header {
  gap: 1px;
  display: flex;
  flex-direction: column;
  align-items: center; /* 水平居中 */
}
.two-row-header .header-title {
  min-height: 24px; /* 根据你其它列表头标题行的高度来调整 */
}
.two-row-header .header-input-row {
  margin-top: 4px; /* 与第一行留点间隔 */
}
.el-table__body tr {
  height: 30px; /* 调整表格行高 */
}
.el-table__body td {
  padding: 4px 0; /* 缩减内边距进一步缩小行高 */
}
.header-select .two-row-header .header-input-row {
  margin-top: 4px; /* 与第一行留点间隔 */
}

