.loading-container {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: var(--el-color-primary);
}

.line + .line {
    margin-left: 4px;
}

.loader {
    display: flex;
    align-items: flex-end;
    height: 45px;
    margin-bottom: 16px;
}

.loader .line:nth-last-child(1) {
    animation: loadingA 1.8s 1.5s infinite;
}
.loader .line:nth-last-child(2) {
    animation: loadingA 1.8s 1.2s infinite;
}
.loader .line:nth-last-child(3) {
    animation: loadingA 1.8s 0.9s infinite;
}
.loader .line:nth-last-child(4) {
    animation: loadingA 1.8s 0.6s infinite;
}
.loader .line:nth-last-child(5) {
    animation: loadingA 1.8s 0.3s infinite;
}
.loader .line:nth-last-child(6) {
    animation: loadingA 1.8s 0s infinite;
}

@keyframes loadingA {
    0 {
        height: 15px;
    }
    50% {
        height: 45px;
    }
    100% {
        height: 15px;
    }
}

.loading-title {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: 600;
    -webkit-background-clip: text;
    background-clip: text;
    color: #0000;
    white-space: nowrap;
    background-image: linear-gradient(rgba(2, 68, 172, 0.6) 0%, #0244ac 100%);
}

.loading-title img {
    height: 32px;
    width: 32px;
    margin-right: 8px;
}
