.wm-tabs-hub-block {
  margin-bottom: 40px;

  .title-box {
    flex-direction: row;
    align-items: center;
    margin-bottom: 24px;
    justify-content: space-between;

    .title {
      font-size: 28px;
      color: #333;
      font-weight: bold;
    }
  }

  .content-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .item {
      height: 56px;
      background: #f5f5f5;
      border-radius: 28px;
      border: 2px solid #f5f5f5;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 18px;
      margin-bottom: 16px;
      width: calc((100vw - 240px) / 3);

      .text {
        font-size: 24px;
        color: #333;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        width: 75%;
        text-align: center;
      }
    }

    .active {
      background: rgba(255, 102, 0, 0.06);
      border: 2px solid rgba(255, 102, 0, 1);

      .text {
        color: #ff6600;
        font-weight: bold;
        line-height: 1;
      }
    }
  }
}
