/*主容器*/
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background-color: #f4f5f6;
}

/*top容器*/
.top {
    display: flex;
    height: 8vh;
    margin: 1vh auto;
    justify-content: center;
    align-items: center;
}

/*top图标*/
.top .top-left {
    height: 55px;
}

/*top标题*/
.top .top-right {
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 700;
    font-family: 'YouYuan', serif;
    letter-spacing: 2px;
}


/*扫描提示*/
.span-top {
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    color: #129adf;
    background-color: #cce5ff;
}

.card {
    width: 100%;
}

/*二维码*/
.qr-img {
    width: 30%;
    margin: 15px auto;
    cursor: pointer;
    /*border: 1px solid #000;*/
}

/*验证信息*/
.check-info {
    font-size: 13px;
    font-weight: 500;
    color: #090909;
    margin-bottom: 15px;
}

.card-footer {
    margin-bottom: 3vh;
}

.card-footer .alert p {
    color: #000000;
    font-size: 14px;
}

.card-footer .btn {
    width: 100%;
    /*background-color: #deb15c;*/
}

.card-footer #to_qq_client {
    animation: gentleShake 0.9s infinite ease-in-out;
        color: #ffc107;
}

.card-footer #to_qq_client:hover {
    background-color: #deb15c;
    color: #fff;
}

.card-footer #to_success_logo {
    margin-top: 12px;
}

.card-footer #to_success_logo:hover {
    background-color: #48b0f7;
}

/*三个点 加载效果...*/
.three-dots {
    --size: 14px;
    display: inline-block;
    font-size: var(--size);
    height: var(--size);
    line-height: var(--size);
    overflow: hidden;
}

.three-dots::after {
    display: inline-block;
    white-space: pre;
    content: '\A.\A..\A...';
    animation: loop 4s steps(4) infinite;
}

@keyframes loop {
    to {
        transform: translateY(calc(0px - var(--size) * 4));
    }
}


@keyframes gentleShake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-1px) rotate(-0.5deg);
    }
    75% {
        transform: translateX(1px) rotate(0.5deg);
    }
}

