index.scss 1.05 KB
.comp-tip-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    .modal-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.9;
        background-color: #000000;
    }
    
    .tip-wrap {
        position: absolute;
        top: 360px;
        left: 50%;
        margin-left: -250px;
        width: 500px;
        background-color: #ffffff;
        border-radius: 5px;
        
        .tip-body {
            padding: 20px 30px;
            word-break: break-all;
            border-bottom: 1px solid #e0e0e0;
            font-family: PingFang-SC-Regular;
            font-size: 28px;
            color: #444444;
            letter-spacing: 0;
            text-align: center;
        }
        
        .tip-operation {
            height: 88px;
            line-height: 88px;
            text-align: center;
            font-family: PingFang-SC-Medium;
            font-size: 28px;
            color: #444444;
            letter-spacing: 0;
        }
    }
}