    /* 所有样式限定在 .my-circle-wrapper 内，避免与主题冲突 */
    .my-circle-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        font-family: Arial, sans-serif;
        margin: 20px 0;
        flex-wrap: wrap; /* 小屏幕自动换行 */
    }

    /* 左侧图形容器 */
    .my-circle-wrapper .my-graphic {
        position: relative;
        width: 240px;
        height: 240px;
        flex-shrink: 0;
    }

    .my-circle-wrapper .my-circle {
        position: absolute;
        top: 60px;
        left: 60px;
        width: 120px;
        height: 120px;
        background-color: #3498db;
        border-radius: 50%;
    }

    .my-circle-wrapper .my-circle::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 170px;
        height: 2px;
        background: black;
    }

    .my-circle-wrapper .my-circle::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 2px;
        height: 170px;
        background: black;
    }

    .my-circle-wrapper .my-label {
        position: absolute;
        font-size: 16px;
        font-weight: bold;
        color: black;
        z-index: 10;
        transform: translate(-50%, -50%);
    }

    /* 标注位置（与之前完全一致） */
    .my-circle-wrapper .my-label-8 { top: 28px; left: 100px; }
    .my-circle-wrapper .my-label-7 { top: 28px; left: 140px; }
    .my-circle-wrapper .my-label-B { top: 100px; left: 28px; }
    .my-circle-wrapper .my-label-C { top: 140px; left: 28px; }
    .my-circle-wrapper .my-label-4 { top: 100px; left: 212px; }
    .my-circle-wrapper .my-label-3 { top: 140px; left: 212px; }
    .my-circle-wrapper .my-label-F { top: 212px; left: 100px; }
    .my-circle-wrapper .my-label-0 { top: 212px; left: 140px; }

    /* 右侧文字 */
    .my-circle-wrapper .my-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        font-family: monospace;
        font-size: 15px;
        line-height: 1.8;
        color: black;
        white-space: pre-wrap;
    }

    .my-circle-wrapper .my-text .my-row {
        /* 左对齐 */
    }

    /* 最后一行缩进已在内容中用 &nbsp; 实现，无需额外样式 */