popup.wxss 743 字节
.cover {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}


.popup {
    width: 658rpx;
    max-height: 70vh;
    background: #FFFFFF;
    border-radius: 16rpx;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 110rpx;
}

.transparent {
    background: none;
}

.icon-close {
    background: url('https://hbrand.oss-cn-hangzhou.aliyuncs.com/BUSINESS/CPP/weilong/icon_close.png') no-repeat center / cover;
    width: 60rpx;
    height: 60rpx;
    position: absolute;
    bottom: -110rpx;
    left: calc(50% - 30rpx);
}