.container {
  display: flex;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 6px;
  width: 200px;

  :global {
    .time-last-wrap {
      display: flex;
      align-items: center;
      width: 188px;
      display: flex;
      align-items: center;
      justify-content: center;

      .date {
        color: #fff;
        font-size: 12px;
      }

      .time-content-wrap {
        display: flex;
        align-items: center;
      }

      .text {
        color: #fff;
        font-size: 12px;
        margin-right: 5px;
        display: inline-block;
      }

      .last-time-wrap {
        display: inline-flex;
        align-items: center;

        .t {
          background-color: #fff;
          color: #000;
          border-radius: 4px;
          width: 24px;
          height: 24px;
          font-size: 14px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-left: 6px;
        }
      }
    }
  }

  &.start {
    :global {

      .date,
      .text {
        color: #fff;
      }
    }
  }
}