        /* 进度条容器 */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px; /* 进度条高度 */
            background-color: #f1f1f1; /* 背景色 */
            z-index: 9999;
            overflow: hidden;
        }
        
        /* 进度条动画部分 */
        .progress-bar {
            height: 100%;
            width: 100%;
            background-color: #9000ff; /* 进度条颜色 */
            animation: indeterminate-progress 2s infinite linear;
            transform-origin: 0% 50%;
        }
        
        /* 无限循环动画 */
        @keyframes indeterminate-progress {
            0% {
                transform: translateX(0) scaleX(0);
            }
            50% {
                transform: translateX(0) scaleX(0.5);
            }
            100% {
                transform: translateX(100%) scaleX(0.25);
            }
        }