.reward-item {
    display: flex;
    box-sizing: border-box;
    margin-bottom: 20rpx;
    padding: 16rpx;
    border-radius: 16rpx;
    background: #fff;
    height: 200rpx;
    .left-box {
        position: relative;
        box-sizing: border-box;
        width: 224rpx;
        height: 168rpx;
        .label {
            position: absolute;
            right: 16rpx;
            bottom: 16rpx;
            padding: 0 10rpx;
            border-radius: 4rpx;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            font-size: 22rpx;
        }
        .prize-pic {
            width: 100%;
            height: 100%;
            border-radius: 10rpx;
        }
    }
    .right-box {
        position: relative;
        box-sizing: border-box;
        padding-left: 20rpx;
        width: calc(100% - 200rpx);
        .receive-btn {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 112rpx;
            height: 40rpx;
            font-size: 20rpx;
            display: flex;
            align-items: center;
            &.info-btn {
                border: 1px solid #1472FF !important;
                background-color: #1472FF !important;
            }
            &.default-btn {
                border: 1px solid #1472FF !important;
                color: #1472FF !important;
                background-color: #fff;
            }
        }
        .name {
            height: 80rpx;
            font-weight: 500;
            font-size: 28rpx;
            display: -webkit-box;
            overflow: hidden;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .desc {
            color: #666;
            font-size: 24rpx;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
        .winning-time {
            position: absolute;
            bottom: 0;
            color: #666;
            font-size: 20rpx;
        }
    }
}
