.loading-animation{
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
    .loading-animation .bkg{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: 1px;
        width: 1px;
        margin: auto;
        border-radius: 300px;
        box-shadow: 0 0 0 3000px #ececec;
    }

.relative {
    position: relative;
}

.loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -120px 0 0 -120px;
    width: 240px;
    height: 240px;
}

.loader-ring-light {
    width: 240px;
    height: 240px;
    -moz-border-radius: 240px;
    -webkit-border-radius: 240px;
    border-radius: 240px;
    -moz-box-shadow: 0 4px 2px #00abf294 inset;
    -webkit-box-shadow: 0 4px 2px #00abf294 inset;
    box-shadow:0 4px 2px #00abf294 inset;
    animation: rotate-360 2s linear infinite;
}

.loader-ring-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 240px;
    -moz-border-radius: 240px;
    -webkit-border-radius: 240px;
    border-radius: 240px;
    -moz-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
    -webkit-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
    box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
    transform: rotate(150deg);
    animation: rotate-360 1.3s linear infinite;
}

.loader-ring-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 240px;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    font-size: 2rem;
    overflow: hidden;
}
    .loader-ring-text .loading{
        perspective: 60px;
        perspective-origin: bottom;
    }
        .loader-ring-text .loading>div{
            transform: rotateX(0deg);
            transition: all 0.8s;
        }
    .loader-ring-text .finesh{
        perspective: 60px;
        perspective-origin: top;
        color: #27bc83;
    }
        .loader-ring-text .finesh>div{
            transform: rotateX(-80deg);
            transition: all 0.8s;
        }

        .end .loader-ring-text .loading>div{
            margin-top: -2rem;
            transform: rotateX(90deg);
            perspective-origin: bottom;

        }
        .end .loader-ring-text .finesh>div{
            transform: rotateX(0deg);
            perspective-origin: top;
        }

@keyframes rotate-360 {
    from {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

    .loading-animation.end .bkg{
        animation: line-open;
        animation-duration: 1.7s;
        animation-delay: 1s;
        animation-timing-function: linear;
        animation-direction: normal;
        animation-fill-mode: forwards;
    }
        @keyframes line-open {
            0% {
                width: 1px;
                height: 1px;
            }
            8%{
                width: 240px;
                height: 240px;
                -moz-transform: scale(1);
                -ms-transform: scale(1);
                -webkit-transform: scale(1);
                transform: scale(1);
            }
            100% {
                -moz-transform: scale(30);
                -ms-transform: scale(30);
                -webkit-transform: scale(30);
                transform: scale(30);
            }
        }

    .loading-animation.end .loader-ring-light{
        animation: rotate-light-open 1.5s 0.8s linear 1;
    }
        @keyframes rotate-light-open{
            0% {
                -moz-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                -webkit-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                
                -moz-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
            }
            13%{
                -moz-box-shadow: 0 20px 20px 91px rgb(0 255 130 / 62%) inset;
                -webkit-box-shadow: 0 20px 20px 91px rgb(0 255 130 / 62%) inset;
                box-shadow: 0 20px 20px 91px rgb(0 255 130 / 62%) inset;
                -moz-transform: scale(1);
                -ms-transform: scale(1);
                -webkit-transform: scale(1);
                transform: scale(1);
            }
            40% {
                -moz-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                -webkit-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
            }
            100% {
                -moz-transform: scale(10) rotate(1800deg);
                -ms-transform: scale(10) rotate(1800deg);
                -webkit-transform: scale(10) rotate(1800deg);
                transform: scale(15) rotate(1800deg);
            }
        }
    .loading-animation.end .loader-ring-track{
        animation: rotate-track-open 1.5s 0.8s linear 1;
    }
        @keyframes rotate-track-open{
            0% {
                -moz-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                -webkit-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                
                -moz-transform: rotate(80deg);
                -ms-transform: rotate(80deg);
                -webkit-transform: rotate(80deg);
                transform: rotate(80deg);
            }
            13%{
                -moz-box-shadow: 0 -20px 20px 91px rgb(0 255 130 / 62%) inset;
                -webkit-box-shadow: 0 -20px 20px 91px rgb(0 255 130 / 62%) inset;
                box-shadow: 0 -20px 20px 91px rgb(0 255 130 / 62%) inset;
                -moz-transform: scale(1);
                -ms-transform: scale(1);
                -webkit-transform: scale(1);
                transform: scale(1);
            }
            40% {
                -moz-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                -webkit-box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
                box-shadow: 0 4px 2px rgb(0 255 130 / 62%) inset;
            }
            100% {
                -moz-transform: scale(10) rotate(3600deg);
                -ms-transform: scale(10) rotate(3600deg);
                -webkit-transform: scale(10) rotate(3600deg);
                transform: scale(15) rotate(3600deg);
            }
        }
.cponline_head_tips{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #2c254d;
    display: flex;
    align-items: center;
    justify-content: center;
}
    div.cponline_head_tips img{
        margin-right: 10px;
        height: 40px !important;
        width: 40px !important;
    }
    .cponline_head_tips>div{
        font-size: 12px;
        line-height: 15px;
        font-weight: bold;
        text-align: left;
    }