* {
    margin: 0;
    padding: 0;
}

*, ::after, ::before {
    box-sizing: border-box;
}

/*页面loading*/
.wl_load {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 12;
    background-color: rgba(255, 255, 255, 0.8);
}

.wl_load .wl_load_div {
    width: 60%;
    position: absolute;
    top: 30%;
    left: 20%;
    z-index: 13;
    text-align: center;
}

.wl_load .spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl_load .wl_load_img_div {
    border-radius: 50%;
    width: 50vw;
    height: 50vw;
    background-color: #e3e3e3;
    overflow: hidden;
    position: relative;
}

.wl_load .wl_load_img_div::before {
    content: "WhereLight";
    color: #4EAB5A;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    height: 100%;
}

.wl_load .wl_load_img {
    width: 100%;
    -webkit-animation: loadin 1s;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.wl_load .spinner .loader {
    height: 55vw;
    width: 55vw;
    position: absolute;
    top: -2.5vw;
    left: 50%;
    opacity: 1;
    filter: alpha(opacity=100);
    margin-left: -27.5vw;
}

.wl_load .wl_load_txt {
    text-align: center;
    margin-top: 30px;
    opacity: 0.8;
}

.wl_load .spinner .loader {
    background-color: transparent;
    -webkit-animation: rotation .7s infinite linear;
    -moz-animation: rotation .7s infinite linear;
    -o-animation: rotation .7s infinite linear;
    animation: rotation .7s infinite linear;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 5px solid #4EAB5A;
    border-radius: 100%
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(359deg)
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0)
    }
    to {
        -moz-transform: rotate(359deg)
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0)
    }
    to {
        -o-transform: rotate(359deg)
    }
}

@keyframes rotation {
    from {
        transform: rotate(0)
    }
    to {
        transform: rotate(359deg)
    }
}

@-webkit-keyframes loadin {
    from {
        transform: translate3d(0, 100%, 0px);
    }
    to {
        transform: translate3d(0, 0, 0px);
    }
}

.wl_load_new {
    position: fixed;
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999
}

.wl_load_new.active {
    opacity: 1;
    pointer-events: auto;
}
