.vertical-screen {
    &.common-popup {
        .close-icon {
        position: absolute;
        right: 24rpx;
        z-index: 1;
        box-sizing: border-box;
        padding: 10rpx;
        width: 52rpx;
        height: 52rpx;
        }
        .bg {
        position: absolute;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        }
        &.red {
        // 红色背景的抽奖弹窗顶部超出一部分，高度特殊计算
        overflow: hidden;
        height: calc(100% - 320rpx);
        background: transparent !important;
        .close-icon {
            top: 150rpx;
        }
        .bg {
            top: 0;
            left: 0;
        }
        // 底部背景拼接，防止屏幕过大时背景展示不全
        .bottom-bg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 160rpx;
            background: linear-gradient(to right, #FE8758, #FE9656);
        }
        }
        &.orange {
        height: calc(100% - 422rpx);
        background: transparent !important;
        .close-icon {
            top: 24rpx;
        }
        .bg {
            bottom: 0;
            left: 0;
        }
        }
        &.white {
            height: calc(100% - 422rpx);
            background: #fff;
            .close-icon {
                top: 24rpx;
            }
            .bg {
                top: 0;
                height: 240rpx;
            }
        }
        // custom-classes
        &.address-collection-popup {
            height: calc(100% - 422rpx);
            background: #f5f5f5;
            -webkit-overflow-scrolling:auto;
            overflow:auto;
        }
    }
}  