* {
    margin: 0;
    padding: 0;
}

.paybox {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    overflow-y: auto;
}
.warning{
    text-align: center;
    color: rgb(207, 55, 55);
    font-weight: 800;
    margin-top: 20px;
    font-size: 14px;
}
.paytop {
    width: 150px;
    height: 30px;
    position: absolute;
    top: 50px;
    left: calc(50% - 75px);
    /* justify-content: ; */
    border-radius: 20px;
    background-color: aliceblue;
    line-height: 30px;
}

.paytop_item {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* background-color: aqua; */
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    /* transition: 1s all; */
}

.paytop_item_box {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.paytop_item_ok {
    /* background-color: rgb(0, 132, 255); */
    color: #fff;
}

.showoff {
    background-color: rgb(0, 132, 255);
    height: 100%;
    width: 50%;
    border-radius: 20px;
    position: absolute;
    top: 0;
    transition: 0.5s all;
}

.fusbox {
    width: calc(100% - 30px);
    background-color: #fff;
    margin: 0 auto;
    margin-top: 70px;
}

.number_box_box {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    justify-content: center;
    /* width: calc(100% - 100px); */
    margin: 10px auto;
}

.item_number {
    width: calc(100% / 5 - 20px);
    height: 100px;
    border-radius: 10px;
    /* background-color: azure; */
    text-align: center;
    line-height: 100px;
    font-weight: 800;
    border: 2px solid #fff;
    box-shadow: 8px 8px 20px rgba(55, 99, 170, .1), -8px -8px 20px #fff;
    transition: all 0.1s;
    cursor: pointer;
    margin: 5px;

}

.item_number_ok{
    /* background-color: rgb(0, 132, 255); */
    border: 2px solid rgb(0, 132, 255);

}

.title_box{
    width: 100%;
}

.title_p{
    position: relative;
    padding-left: 10px;
    font-weight: 800;
    font-size: 14px;
}
.title_p::after{
    content: '';
    width: 5px;
    height: 17px;
    background-color: rgb(8, 106, 253);
    position: absolute;
    top: 2px;
    left: 0px;
}

.paybut{
    width: 300px;
    height: 50px;
    margin: 10px auto;
    border: none;
    border-radius: 10px;
    background-color: rgb(8, 106, 253);
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-top: 30px;
}


.fusboxoos{
    width: calc(100% - 30px);
    background-color: #fff;
    margin: 0 auto;
    margin-top: 70px;
    font-size: 14px;
    color: #999;
}