.widget-category {
  .list {
    ul {
      list-style: none;
      padding: 12px 0 0 0;
      margin: 0;
      overflow: hidden;

      li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;

        &:last-child {
          margin-bottom: 0;
        }

        a {
          height: 18px;
          line-height: 18px;
          overflow: hidden;
          flex: 1;
          text-overflow: ellipsis;
          white-space: nowrap;
          color: #000;
        }

        span {
          width: 70px;
          margin-left: 4px;
        }
      }
    }
  }
}