/* 遮罩层，覆盖整个页面 */
    #loading-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.8);
        /* 白色半透明 */
        z-index: 9999;
        pointer-events: all;
        /* 禁止点击页面其他元素 */
    }

    /* 加载内容区域 */
    #loading {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 18px;
        color: #333;
        text-align: center;
    }

    /* 简单的加载动画 */
    .spinner {
        margin: 0 auto 10px;
        width: 40px;
        height: 40px;
        border: 4px solid #ccc;
        border-top-color: #007bff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

        /* 全局样式 */
        .vspinp-container {
            font-family: 'Arial', sans-serif;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            color: #333;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        /* 头部信息 */
        .vspinp-header {
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .vspinp-title {
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .vspinp-meta {
            display: flex;
            justify-content: space-between;
            color: #7f8c8d;
            font-size: 14px;
        }
        
        /* 内容区域 */
        .vspinp-content {
            padding: 0 10px;
        }
        
        .vspinp-section-title {
            font-size: 20px;
            font-weight: bold;
            margin: 25px 0 15px 0;
            color: #3498db;
        }
        
        .vspinp-feature-list {
            list-style-type: decimal;
            padding-left: 20px;
        }
        
        .vspinp-feature-item {
            margin-bottom: 15px;
            padding-left: 10px;
        }
        
        /* 总结部分 */
        .vspinp-summary {
            background-color: #f8f9fa;
            border-left: 4px solid #3498db;
            padding: 15px;
            margin-top: 30px;
            font-style: italic;
        }
        
        .new-breadcrumb{
    margin: 20px 0;
        }