.range-item {
    margin-top: 15px
}
/* PDF 拆分工具左右卡片等高（仅作用于 .tool-body 内部） */
.tool-body {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;      /* 子项拉伸填满交叉轴高度 */
}
/* 让卡片自身也采用 flex 列布局，确保内部内容可自适应 */
.tool-body .tool-card {
    display: flex;
    flex-direction: column;
    height: auto;             /* 覆盖可能存在的固定高度 */
}
/* 内部包裹层撑满剩余高度 */
.tool-body .tool-card-upload-wrapper,
.tool-body .tool-card-param-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* 上传区域内容垂直居中（可选，如希望居顶可改为 flex-start） */
.tool-body .tool-card-upload .tool-upload-span {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}