.logo-load-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    min-height: 100%;
    min-width: 100%;
    position: relative;
    z-index: 99;
}

.logo-load-content {
    /*width: 1.9rem;*/
    /*height: 5.6rem;*/
    text-align: center;
    /*display: flex;*/
}
.logo-load-inner {
    text-align: center;
    position: relative;
    width: 5.8rem;
    height: 1.7rem;
}

.logo-load-title {
    text-align: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

.img_logo_1 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}
.img_logo_2_box {
    width: 100%;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    /*animation: logoLoad 5s infinite linear;*/
}
.img_logo_2 {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    /*top: -1.7rem;*/
}
.img_logo_3 {
    position: absolute;
    width: 1.6rem;
    left: 1.69rem;
    top: 0;
}
@keyframes logoLoad {
    0% {
        -webkit-clip-path: polygon(0% 100%, 50% 100%, 100% 100%, 100% 100%, 0% 100%);
                clip-path: polygon(0% 100%, 50% 100%, 100% 100%, 100% 100%, 0% 100%);
    }
    50% {
        -webkit-clip-path: polygon(0% 50%, 50% 50%, 100% 50%, 100% 100%, 0% 100%);
                clip-path: polygon(0% 50%, 50% 50%, 100% 50%, 100% 100%, 0% 100%);
    }
    100% {
        -webkit-clip-path: polygon(0% 0%, 50% 0%, 100% 0%, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0%, 50% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

.logo-load-info {
    font-size: 0.3rem;
    color: #fff;
    text-align: center;
    padding-top: 0.6rem;
}

