index.scss 982 Bytes
Newer Older
xuzhenghua committed
1 2 3 4 5 6 7 8 9 10
.closable-popup-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;

    .popup-container {
zhanghaozhe committed
11 12 13 14 15
        position: absolute;
        top: 165px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
xuzhenghua committed
16
        padding: 20px 10px;
FE committed
17
        border-radius: 10px;
zhanghaozhe committed
18
        background: #fff;
xuzhenghua committed
19 20 21 22 23 24 25

        .title {
            font-size: 16px;
            color: #525C65;
            text-align: center;
        }

zhanghaozhe committed
26 27 28 29 30 31 32 33
        .close {
            position: absolute;
            bottom: -74px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 36px;
            color: #fff;
        }
xuzhenghua committed
34

zhanghaozhe committed
35 36 37 38 39 40 41 42 43 44
        .close-icon {
            position: absolute;
            bottom: -66px;
            left: 50%;
            width: 33px;
            height: 33px;
            transform: translateX(-50%);
            font-size: 36px;
            color: #fff;
        }
xuzhenghua committed
45 46
    }
}