index.less 812 Bytes
@import "~@/mixins.less";

.abnormalEventReporting {
  .size(100%, calc(100vh - 280px));
  .flex();
  gap: 10px;
  background-color: #DCE2E8;
}

.leftPart {
  .size(50%, 100%);
  background-color: #FFF;

  :global {
    .ant-form-item[class*="subForm"] {
      height: calc(100% - 80px) !important;
    }
  }
}

.rightPart {
  .size(50%, 100%);
  background-color: #FFF;
  overflow: auto;
}

.runningStatus {
  .size(100%, auto);
  max-height: calc(100% - 210px);
  overflow-x: hidden;
  overflow-y: auto;
}

.runningBtn {
  .flex();
  justify-content: end;
}

.runningStatusCondition {
  .size(auto, 100%);
  position: absolute;
  right: 0;
  top: 0;

  :global {
    .ant-picker {
      border: 1px solid #AAA;
      border-radius: 5px;
    }

    .ant-radio-button-wrapper {
      font-size: 18px;
    }
  }
}