.getCouponOne {
  .OneLineOneBlc {
    background: #ffffff;
    display: flex;
    min-height: 88px;
    border: 1px solid #000;
    box-sizing: border-box;
    margin: 10px;

    .lPart {
      flex: 1;
      padding: 23px;
      box-sizing: border-box;
      display: flex;
      justify-content: space-between;

      .intro {
        font-weight: bold;
        border-right: 1px dashed #000;
        padding-right: 23px;

        .type {
          font-size: 18px;
          margin-bottom: 4px;
        }

        .rule {
          font-size: 12px;
        }
      }

      .info {
        flex: 1;
        padding-left: 23px;
        display: flex;
        flex-direction: column;

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

        .validity {
          font-size: 12px;
          color: #999;
        }
      }
    }

    .rPart {
      width: 40px;
      background: #000000;
      color: #fff;
      display: flex;
      align-items: center;

      .txt {
        writing-mode: vertical-rl;
        text-align: center;
        margin: 0 auto;
        height: 88px;
      }
    }
  }

  .oneLineTwoBlc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;

    .oneLineTwoBlcItem {
      height: 114px;
      display: flex;
      justify-content: space-between;
      border: 1px solid #000;
      box-sizing: border-box;

      .lPart {
        padding: 14px 8px;

        .price {
          font-weight: bold;
          margin-bottom: 10px;

          .num {
            font-size: 27px;
            display: inline-block;
          }
        }

        .info {
          font-size: 14px;
          font-weight: bold;
          color: #333;
          margin-bottom: 8px;
        }

        .condition {
          color: #999;
          font-size: 12px;
        }
      }

      .rPart {
        width: 40px;
        height: 100%;
        line-height: 100%;
        background: #000000;
        color: #fff;

        .txt {
          writing-mode: vertical-rl;
          text-align: center;
          margin: 0 auto;
          height: inherit;
        }
      }
    }
  }
}
