@import '../style/var.less';
.workflow-record--container {
  min-height: calc(100vh - 48px - 40px);
  box-sizing: border-box;
  padding: @padding;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.workflow-record--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  height: @workflowRecordTitleHeight;
  .workflow-record--header-title {
    position: relative;
    padding-left: @padding;
    line-height: @workflowRecordTitleHeight;
    &::before {
      content: '';
      position: absolute;
      border-radius: @radius;
      background-color: @primary;
      width: 3px;
      height: 20px;
      left: 0;
      top: 15px;
    }
  }
  .van-button {
    font-size: 18px;
    padding: 0 @padding 0 4px;
    height: 34px;
  }
}
.workflow-record--content {
  flex: 1;
  max-height: calc(100vh - 48px - 40px - 48px);
  overflow-y: auto;
}