body {
    margin: 0;
    overflow: hidden;
}

canvas {
    display: block;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
@keyframes rotateScale {
    from {
        transform: rotate(0deg) scale(1.1);
    }

    to {
        transform: rotate(360deg) scale(1.1);
    }
}


@font-face {
    font-family: 'MyFont';
    src: url('../fonts/AlimamaShuHeiTi-Bold.ttf') format('truetype');
    /* 添加其他字体格式的链接（如果有） */
}

#Loading {
    opacity: 1;
    transition: opacity 1s ease;
    /* 添加过渡效果 */
    z-index: 3;

    position: fixed;
    height: 100%;
    width: 100%;
    /* background-image: url('../images/loading.png'); */
    background: url('../images/loading.png') no-repeat left center;
    background-size: 100% 100%;
    align-items: center;

    .progress-animation {
        font-size: 32px;
        color: rgba(255, 255, 255, 1);
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 10%;
        /* 调整距离底部的距离 */
        left: 50%;
        transform: translate(-50%, 0);

        img {
            margin-right: 34px;
            display: inline-block;
            animation: rotate 2.5s linear infinite;
            /* 设置动画为旋转，持续时间为5秒，线性速度，无限循环 */
        }

        .content {
            font-family: 'MyFont', sans-serif;
        }
    }

    .title {
        position: absolute;
        top: 56px;
        left: 77px;
        font-family: 'MyFont', sans-serif;
        font-size: 48px;
        color: rgba(255, 255, 255, 1);
    }
}