<===> input.scss
$score: (item-height: 1.12em);
.test {
    background-position: 0 -#{map-get($score, item-height)};
}


<===> output.css
.test {
  background-position: 0 -1.12em;
}