.ele-tag {
  &.ant-tag {
    margin: 0;
    height: 24px;
    line-height: 24px;
    box-sizing: content-box;
    transition: none;
    padding: 0 8px;

    .anticon-close {
      transition: none;
    }

    & > .anticon + span,
    & > span + .anticon {
      margin-left: 4px;
    }
  }

  & + .ele-tag {
    margin-left: 8px;
  }

  // 圆形
  &.ele-tag-circle {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    padding: 0 !important;
    text-align: center;
  }

  // 圆角
  &.ele-tag-round {
    border-radius: 24px;
  }

  // 中型尺寸
  &.ele-tag-md {
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    font-size: 14px;
    vertical-align: top;

    &.ele-tag-circle {
      width: 28px;
    }

    &.ele-tag-round {
      border-radius: 28px;
    }

    & > .anticon + span,
    & > span + .anticon {
      margin-left: 6px;
    }
  }

  // 大型尺寸
  &.ele-tag-lg {
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
    font-size: 15px;

    &.ele-tag-circle {
      width: 32px;
    }

    &.ele-tag-round {
      border-radius: 32px;
    }

    & > .anticon + span,
    & > span + .anticon {
      margin-left: 8px;
    }
  }

  // 超小尺寸
  &.ele-tag-mini {
    height: 20px;
    line-height: 20px;
    padding: 0 6px;

    &.ele-tag-circle {
      width: 20px;
    }

    &.ele-tag-round {
      border-radius: 20px;
    }

    & > .anticon + span,
    & > span + .anticon {
      margin-left: 2px;
    }
  }
}
