/**
 * Time Range Display 样式
 * 无 layout 配置：一行放不下时按块换行，块内不换行，换行后每行居中
 */
.pisell-time-range-display {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 4px;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.88);

  .pisell-time-range-display-time,
  .pisell-time-range-display-date,
  .pisell-time-range-display-weekday,
  .pisell-time-range-display-duration {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }

  .pisell-time-range-display-sep {
    font-size: 14px;
    font-weight: 400;
    margin: 0 2px;
    user-select: none;
  }

  // 各块内不换行，换行时以块为单位
  &-time,
  &-date,
  &-weekday,
  &-duration {
    //display: inline-block;
    //white-space: nowrap;
  }

  &-sep {
    //display: inline-block;
    //white-space: nowrap;
  }

  // 同天小宽度：「 - 结束时间」不拆开
  &-time-end-wrap {
    //white-space: nowrap;
  }
}
