@keyframes loadingAnima {
    50% {
        top: 15px;
        letter-spacing: 5px;
    }
}

@keyframes mouseClickBorderAnima {
    100% {
        width: 40px;
        height: 40px;
        margin-left: -19px;
        margin-top: -19px;
        opacity: 0;
    }
}

#appLoading {
    background-color: rgba(50, 50, 50, 1);
    background-image: radial-gradient(circle 248px at center, #16d9e3 0%, #30c7ec 47%, #46aef7 100%);
    user-select: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
}

#appLoading .loadingBox {
    width: 100px;
    height: 100px;
    text-align: center;
    margin: -50px 0 0 -50px;
    vertical-align: middle;
    position: fixed;
    left: 50%;
    top: 50%;
}

#appLoading .loadingBox .textBox {
    font-size: 16px;
    color: #fff;
}

#appLoading .loadingBox .text1 {
    position: relative;
    top: 0;
    animation: loadingAnima .8s ease-in infinite;
}

#appLoading .loadingBox .text2 {
    position: relative;
    top: 0;
    animation: loadingAnima 1s ease-in infinite;
}

#appLoading .loadingBox .text3 {
    position: relative;
    top: 0;
    animation: loadingAnima .9s ease-in infinite;
}

.el-upload-list__item {
    /* 取消上传动画 */
    transition: none !important;
}

#mouseClickBorder {
    width: 5px;
    height: 5px;
    border: 1px solid rgba(0, 159, 225, 0.7);
    border-radius: 50%;
    position: fixed;
    z-index: 999999;
    animation: mouseClickBorderAnima .35s ease-in;
    pointer-events: none;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Microsoft YaHei, serif;
}

#app {
    width: 100%;
    margin: 0 auto;
}

img {
    font-size: 0 !important;
}

[v-cloak] {
    display: none;
}
