.boss {
    width: 100vw;
    height: 100vh;
    padding-top: .01rem;
    background: url(../images/bg_index.jpg) no-repeat center;
    background-size: 100% 100%;
}


.logo {
    width: 3.25rem;
    height: 1.22rem;
    margin: 0 auto;
    /* margin-top: 7.87rem; */
}

img {
    width: 100%;
    height: 100%;
}

.container-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container-content {
    display: none;
    margin-top: .5rem;
    text-align: center;
}

.text-num {
    font-size: .58rem;
    color: #488dea;
}

.text {
    font-size: .24rem;
    color: #fff;
}

.text>p>span {
    display: inline-block;
    overflow: hidden;
    width: 0;
    animation: loading 1s linear infinite alternate;
}


.dialog-have-path {
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
}

.dialog-have-path .dialog-main {
    width: 65%;
    padding: 1rem 0 .7rem 0;
    background-color: #fff;
    border-radius: .4rem;
    font-size: .35rem;
    color: #000;
    text-align: center;
    font-weight: bold;
}

.dialog-have-path .dialog-main .btn-container {
    display: flex;
    justify-content: space-evenly;
    margin-top: 1rem;
    font-size: .3rem;
}


.dialog-have-path .dialog-main .btn-container div {
    padding: .1rem .4rem;
    border: .01rem solid rgb(189, 187, 187);
    border-radius: .4rem;
    box-shadow: .01rem .01rem .1rem rgb(194, 190, 190);
}



@keyframes loading {
    from {
        width: 0;
    }

    to {
        width: .3rem;
    }
}