/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.m-formula-block {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 12px;
  background: #f6f7f9;
  border-radius: 2px;
}
.m-formula-block i {
  padding-top: 2px;
}
.m-formula-block-container {
  font-size: 12px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.65);
}
.m-formula-block-key,
.m-formula-block-value,
.m-formula-block-correct,
.m-formula-block-error {
  display: flex;
  line-height: 20px;
}
.m-formula-block-key :nth-child(2),
.m-formula-block-value :nth-child(2),
.m-formula-block-correct :nth-child(2),
.m-formula-block-error :nth-child(2) {
  padding: 0 4px;
}
.m-formula-block-key-content {
  margin: 0 0 12px 2px;
  background: #fff;
}
.m-formula-block-correct .correct-value {
  color: #21bc29;
}
.m-formula-block-error .not-equal {
  text-decoration: line-through red;
  cursor: pointer;
}
