/* Applicable */
.applicable-box {
  .img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    // height: 173px;
    background-color: #f7f2f0;
    padding-top: 56%;
    border-radius: 8px;
  }
  & > table {
    & > tbody > tr {
      & > td {
        width: 50%;
        &:first-child {
          padding-right: 20px;
        }

        &:last-child {
          padding-left: 20px;
        }
      }
    }
  }
}

/* 訂單資訊細項 */
.sectionOrderInfo {
  &__top {
    background-color: #D9F0F8;
  }

  &__memberLevel {
    background-color: rgba(#1B2B55, .3);
    color: white;
    text-align: center;
    padding: 6px;
  }

  &__originPrice {
    color: $color-info;
    text-decoration: line-through;
  }

  &__divider {
    padding-top: 1rem;
    border-top: 1px solid $color-line;
  }

  &__total {
    tr {
      td {
        vertical-align: baseline;
        &:nth-child(2) {
          text-align: right;
        }
      }
    }
  }
}