/*数据加载*/

.load {
    width: 240px;
    height: 240px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -120px 0 0 -120px;
    color: #1890ff;
    -webkit-animation: fadeIn 1s infinite ease-in-out;
    animation: fadeIn 1s infinite ease-in-out;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    opacity: 1;
}

.load .loader,
.load .loader:before,
.load .loader:after {
    background: #1890ff;
    -webkit-animation: load 1s infinite ease-in-out;
    animation: load .6s infinite ease-in-out;
    width: 1em;
    height: 4em
}

.load .loader:before,
.load .loader:after {
    position: absolute;
    top: 0;
    content: ''
}

.load .loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.31s;
    animation-delay: -0.31s
}

.load .loader {
    text-indent: -9999em;
    margin: 8em auto;
    position: relative;
    font-size: 11px;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s
}

.load .loader:after {
    left: 1.5em
}

@-webkit-keyframes load {
    0%,
    80%,
    100% {
        box-shadow: 0 0 #1890ff;
        height: 4em
    }
    40% {
        box-shadow: 0 -2em #1890ff;
        height: 5em
    }
}

@keyframes load {
    0%,
    80%,
    100% {
        box-shadow: 0 0 #1890ff;
        height: 4em
    }
    40% {
        box-shadow: 0 -2em #1890ff;
        height: 5em
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}