@import "../../styles/mixins/text-ellipsis.scss";

.nb-coupon__box {
  display: flex;
  background-size: 100% 100%;
  position: relative;
  .nb-coupon__main {
    position: relative;
    display: flex;
    padding: 16px;
    align-items: center;
    text-align: left;
    &-price {
      display: flex;
      align-items: baseline;
      margin-right: 15px;
      font-size: 32px;
      &--currency {
        font-size: 16px;
      }
    }
    &-content {
      overflow: hidden;
      &--maintitle {
        font-size: 14px;
        @include text-ellipsis;
      }
      &--subtitle,
      &--timerange {
        font-size: 12px;
        width: 100%;
        @include text-ellipsis;
      }
    }
    &-usedicon {
      position: absolute;
      top: 0px;
      right: 7px;
    }
  }
  .nb-coupon__btns {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nb-coupon__label {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 14px;
    line-height: 14px;
    padding: 0 2px;
    font-size: 10px;
    font-weight: 400;
    color: red;
    background: #fff;
    border-radius: 6px 0;
    max-width: 100px;
    @include text-ellipsis;
  }
}
.nb-coupon__box--small {
  height: 81px;
  .nb-coupon__main {
    color: red;
    flex-direction: column;
    text-align: center;
    padding: 13px 7px 10px;

    &-price {
      //   width: 100%;
      font-size: 18px;
      display: flex;
      justify-content: center;
      margin-right: 0;
      &--currency {
        font-size: 12px;
      }
      &--number {
        // width: 100%;
        font-size: 18px;
        // @include ellipsis;
      }
    }
    &-content {
      width: 100%;
      @include text-ellipsis;
      &--maintitle {
        font-size: 10px;
      }
      &--subtitle {
        color: rgba(250, 44, 25, 0.5);
        font-size: 10px;
        @include text-ellipsis;
      }
    }
  }
  .nb-coupon__btns {
    &-vertcal {
      display: flex;
      align-items: center;
      height: 100%;
      font-size: 10px;
      padding: 0 7px;
      color: red;
    }
  }
  .nb-coupon__label {
    background: red;
    color: #fff;
  }
}
