$border-gray: 1px solid #eee;
$primary-color: #409eff;
$warning-color: #e6a23c;
$error-color: #f56c6c;

$mf-item-height: 80px;

@mixin display-flex($rc: row, $wrap: nowrap, $j: center, $a: center) {
  display: flex;
  flex-flow: $rc $wrap;
  justify-content: $j;
  align-items: $a;
}

.unselect{
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
  not supported by any browser */
}