        /* 容器作用域*/
        .xwxmsingle-page {
            --xwx-bg: #f8f9fc;
            --xwx-surface: #ffffff;
            --xwx-text: #1e1e2f;
            --xwx-text-light: #6b6b7a;
            --xwx-accent: #b1468b;
            --xwx-accent-light: #d68bbd;
            --xwx-border: #e2e0e8;
            --xwx-hover-bg: #f1eef6;
            --xwx-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.03);
            --xwx-avatar-bg: #d0c0d8;

 
            line-height: 1.5;
            padding: 2em 5%;
            max-width: 1400px;
            margin: 0 auto;
            border-radius: 1.2em;
            transition: background-color 0.2s, color 0.2s, border-color 0.2s;
        }

        .xwxmsingle-page.dark {
            --xwx-bg: #1a1825;
            --xwx-surface: #262339;
            --xwx-text: #efedf5;
            --xwx-text-light: #aaa7c4;
            --xwx-accent: #d68bbd;
            --xwx-accent-light: #b1468b;
            --xwx-border: #3b3852;
            --xwx-hover-bg: #322f48;
            --xwx-shadow: 0 0.4em 1.2em rgba(0, 0, 0, 0.5);
            --xwx-avatar-bg: #5a4b70;
        }

        /* 全局盒模型 */
        .xwxmsingle-page * {
            box-sizing: border-box;
        }

        /* 面包屑 + 返回按钮行 */
        .xwxmsingle-nav-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2em;
        }
        .xwxmsingle-breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3em 0.5em;
            font-size: 0.95em;
            color: var(--xwx-text-light);
        }
        .xwxmsingle-breadcrumb a {
            color: var(--xwx-accent);
            text-decoration: none;
        }
        .xwxmsingle-breadcrumb a:hover {
            text-decoration: underline;
        }
        .xwxmsingle-breadcrumb span {
            color: var(--xwx-text);
        }
        .xwxmsingle-breadcrumb svg {
            width: 1em;
            height: 1em;
            stroke: currentColor;
            stroke-width: 1.5;
        }

        /* 返回上一页按钮 */
        .xwxmsingle-back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.3em;
            background: var(--xwx-surface);
            border: 0.1em solid var(--xwx-border);
            border-radius: 3em;
            padding: 0.4em 1.2em;
            color: var(--xwx-text);
            text-decoration: none;
            font-size: 0.9em;
            font-weight: 500;
            transition: 0.2s;
        }
        .xwxmsingle-back-btn:hover {
            background: var(--xwx-accent);
            color: white;
            border-color: var(--xwx-accent);
        }
        .xwxmsingle-back-btn svg {
            width: 1.2em;
            height: 1.2em;
            stroke: currentColor;
        }

        /* 卡片网格 */
        .xwxmsingle-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8em;
            margin: 2em 0 3em;
        }

        /* 卡片 */
        .xwxmsingle-card {
            background: var(--xwx-surface);
            border-radius: 1.5em;
            padding: 1.5em;
            box-shadow: var(--xwx-shadow);
            border: 0.1em solid var(--xwx-border);
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }
        .xwxmsingle-card:hover {
            transform: translateY(-0.3em);
            border-color: var(--xwx-accent);
            box-shadow: 0 0.8em 1.8em rgba(177, 70, 139, 0.15);
        }

        /* 卡片标题 + 评论量 */
        .xwxmsingle-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.2em;
        }
        .xwxmsingle-title {
            font-size: 1.2em;
            font-weight: 600;
            color: var(--xwx-text);
            margin: 0;
            line-height: 1.3;
        }
        .xwxmsingle-comments {
            display: flex;
            align-items: center;
            gap: 0.2em;
            color: var(--xwx-text-light);
            font-size: 0.9em;
            background: var(--xwx-bg);
            padding: 0.2em 0.6em;
            border-radius: 2em;
        }
        .xwxmsingle-comments svg {
            width: 1.1em;
            height: 1.1em;
            stroke: var(--xwx-accent);
            fill: none;
        }

        /* 作者区域 */
        .xwxmsingle-author {
            display: flex;
            align-items: center;
            gap: 0.6em;
            margin-bottom: 0.8em;
        }
        .xwxmsingle-avatar {
            width: 2.5em;
            height: 2.5em;
            border-radius: 50%;
            background: var(--xwx-avatar-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9em;
            font-weight: 600;
        }
        .xwxmsingle-avatar svg {
            width: 1.5em;
            height: 1.5em;
            stroke: white;
            fill: none;
        }
        .xwxmsingle-author-info {
            display: flex;
            flex-direction: column;
        }
        .xwxmsingle-author-name {
            font-weight: 600;
            color: var(--xwx-text);
            font-size: 0.95em;
        }
        .xwxmsingle-duration {
            display: flex;
            align-items: center;
            gap: 0.2em;
            color: var(--xwx-text-light);
            font-size: 0.85em;
            margin-top: 0.1em;
        }
        .xwxmsingle-duration svg {
            width: 1em;
            height: 1em;
            stroke: var(--xwx-accent);
        }

        /* 分页 (圆形按钮) */
        .xwxmsingle-pagination {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5em;
            margin-top: 2.5em;
        }
        .xwxmsingle-pagination a,
        .xwxmsingle-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.8em;
            height: 2.8em;
            border-radius: 50%;
            background: var(--xwx-surface);
            border: 0.1em solid var(--xwx-border);
            color: var(--xwx-text);
            font-weight: 500;
            text-decoration: none;
            transition: 0.15s;
        }
        .xwxmsingle-pagination a:hover {
            background: var(--xwx-accent);
            color: white;
            border-color: var(--xwx-accent);
        }
        .xwxmsingle-pagination .xwxmsingle-current {
            background: var(--xwx-accent);
            color: white;
            border-color: var(--xwx-accent);
        }
        .xwxmsingle-pagination .xwxmsingle-dots {
            background: transparent;
            border: none;
            color: var(--xwx-text-light);
        }

        /* 响应式 */
        @media (max-width: 900px) {
            .xwxmsingle-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 550px) {
            .xwxmsingle-grid {
                grid-template-columns: 1fr;
            }
            .xwxmsingle-nav-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8em;
            }
        }

        /* SVG精灵 */
        .xwxmsingle-sprite {
            display: none;
        }