﻿.alertBJ {
    /*z-index: 99999;
    position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    /*display: flex;*/
    align-items: center;
    justify-content: center;
}

.alertBox {
    width: 300px;
    background: rgba(255,255,255,1);
    box-shadow: 0px 6px 43px 0px rgba(19,19,19,0.08);
}

    .alertBox .headerV {
        padding: 0 10px;
        width: 100%;
        height: 55px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
    }

.headerV .title {
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 800;
    color: rgba(88,96,96,1);
}

.headerV .icon {
    position: absolute;
    top: 10px;
    right:10px;
    width: 30px;
    height: 30px;
}


.alertBox .listV {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content:center;
    align-items:center;
    padding: 30px 30px;
    padding-top: 10px;
    text-align:justify;
    text-align-last:center;
}

.alertBox .bottomV {
    width: 100%;
    height: 42px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

    .alertBox .bottomV .btns {
        width: 101px;
        height: 42px;
        background: rgba(90,180,181,1);
        border-radius: 3px;
        line-height: 42px;
        font-size: 16px;
        font-weight: 600;
        color: rgba(255,255,255,1);
        text-align: center;
    }
    .alertBox .bottomV .cancel{
        background: #c8c8c8;
    }



.payAlert {
    width: 600px;
    height: 350px;
}

    .payAlert .headerV {
        height: 130px;
        padding: 30px;
    }

        .payAlert .headerV .title {
            height: 25px;
            font-size: 20px;
            font-weight: bold;
            color: rgba(102,98,110,1);
        }

    .payAlert .checkBoxV {
        width: 100%;
        height: 50px;
        display: flex;
        flex-direction: row;
        padding-top: 20px;
    }

        .payAlert .checkBoxV .checBox1 {
            width: 25px;
            height: 25px;
            border: 1px solid #dde6e6;
            border-radius: 5px;
            margin-right: 20px;
        }

        .payAlert .checkBoxV .active {
            background-image: url(/images/gougou1.png);
            background-repeat: no-repeat;
            background-size: contain
        }

        .payAlert .checkBoxV .balanceNum {
            height: 19px;
            font-size: 20px;
            font-weight: bold;
            color: rgba(102,98,110,1);
        }

    .payAlert .centerV {
        width: 100%;
        height: 150px;
        padding: 0 40px;
    }

        .payAlert .centerV .onlyBalance {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .payAlert .centerV .normal {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding： 0 20px;
        }

        .payAlert .centerV .item {
            position: relative;
            width: 120px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            .payAlert .centerV .item .icon {
                width: 100px;
                height: 100px;
            }

            .payAlert .centerV .item .title {
                margin-top: 10px;
                width: 100px;
                text-align: center;
                height: 19px;
                font-size: 20px;
                font-weight: bold;
                color: rgba(102,98,110,1);
            }
