﻿.qrcodebox {
    width: 281px;
    margin: auto;
}
.qrcodebox img{
    width: 100%;
}
.tipbox {
    background-color: #667EEA;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
}
.codebox {
    position: relative;
}
.codebox .codeimg {
    position: absolute;
    right: 1rem;
    top: 2.25rem;
    cursor: pointer;
}

.loader {
    position: absolute;
    width: 281px;
    height: 281px;
    padding: 0 70px;
    text-align: center;
}
.loader-3 .dot {
    width: 10px;
    height: 10px;
    background: #667EEA;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 5px);
}

.loader-3 .dot1 {
    left: 110px;
    -webkit-animation: dot-jump 0.5s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
    animation: dot-jump 0.5s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
}

.loader-3 .dot2 {
    -webkit-animation: dot-jump 0.5s 0.2s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
    animation: dot-jump 0.5s 0.2s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
}

.loader-3 .dot3 {
    left: 170px;
    -webkit-animation: dot-jump 0.5s 0.4s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
    animation: dot-jump 0.5s 0.4s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
}
@-webkit-keyframes dot-jump {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes dot-jump {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.getnewbox {
    position: absolute;
    width: 281px;
    height: 281px;
    
}
.getnewbox span {
    position: absolute;
    top: 220px;
    width: 80px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    left: 100px;
    border-radius: 100px;
    background-color: #667eea;
    color: #ffffff;
    font-size: 12px;
    cursor: pointer;
}
.scansuccess {
    position: absolute;
    width: 281px;
    height: 281px;
}
.scansuccess img {
    position: absolute;
    width: 80px;
    height: 80px;
    top: calc(50% - 40px);
    left: 100px;
}
.scansuccess span {
    position: absolute;
    top: 180px;
    width: 100px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    left: 90px;
    border-radius: 100px;
    color: #41B908;
    font-size: 12px;
}