.couponList {
  padding: 12px;
  .contentWrap{
    .label {
      font-size: 16px;
      padding-bottom: 10px;
    }
    .couponWrap {
      background: #f1f1f1;
      padding: 6px;
      .couponNode {
        background-color: #DDD;
        padding: 4px;
        margin-bottom:4px;
        position: relative;
        .closeBtn {
          display: none;
          position: absolute;
          right: -2px;
          top: -2px;
          border-radius: 50%;
          border: 1px solid gray;
          background: #FFF;
          height: 15px;
          width: 15px;
          align-items: center;
          justify-content: center;
          font-size: 12px;
          cursor: pointer;
        }
        &:hover {
          .closeBtn {
            display: flex;
          }
        }
      }
      .addBtn {
        width: 100%;
        height: 30px;
        margin-top: 15px;
      }
    }
    .checkWrap {
      padding: 20px 0;
    }
  }
}