.detail-promotion-detail-container {
  width: 100%;
  padding: 20rpx 0;

  .detail-promotion-detail-content {
    flex-direction: row;
    justify-content: space-between;

    .detail-promotion-detail-left {
      font-size: var(--p-body-1-font-size, 28rpx);
      color: var(--color-text1-2, #999);
      // width: 180rpx;
      text-align: right;
    }

    .detail-promotion-detail-right {
      margin-left: 24rpx;
      flex-direction: row;
      // width: 450rpx;
      align-items: center;
      justify-content: space-between;

      .right-desc {
        font-size: var(--p-body-1-font-size, 28rpx);
        color: var(--color-text1-4, #111);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 300;
      }

      .right-value {
        flex-direction: row;
        align-items: center;

        span {
          font-size: var(--p-body-1-font-size, 28rpx);
        }

        .right-arrow {
          color: var(--color-text1-1, #ccc);
          position: relative;
          right: -12rpx;
        }
      }
    }
  }

  .promotion-detail-popup {
    .dialog-body {
      min-height: 640rpx;
      max-height: 724rpx;

      .dialog-body-main {
        &.coupon {
          overflow-y: scroll;
          box-sizing: border-box;
          // width: 750rpx;
          height: 624rpx;
        }

        .row {
          display: flex;
          overflow: hidden;
          align-items: center;
          flex-direction: row;
          box-sizing: border-box;
          width: 100%;
          line-height: 80rpx;
          justify-content: space-between;

          .title {
            color: var(--color-text1-4, #111);
            font-size: var(--p-body-1-font-size, 28rpx);
          }

          .price {
            margin-left: 20rpx;
            color: var(--color-text1-3, #666);
            font-size: var(--p-body-1-font-size, 28rpx);
          }

          &:last-child {
            font-size: 32rpx;
            margin-top: 32rpx;
            line-height: 88rpx;
            color: var(--color-text1-4, #111);
            font-size: var(--p-title-font-size, 40rpx);
            font-weight: var(--p-title-font-weight);
          }
        }
      }
    }
  }
  &.rm-popup-drawer-m {
    max-height: 958rpx;
    height: fit-content;
  }
}

