/* 增大内容区域宽度 */
/* .wy-nav-content { */
/* max-width: 1200px !important; */
/* } */

/* 响应式内容区域宽度 */
.wy-nav-content {
    max-width: 85% !important;
    /* 默认宽度 */
    margin: 0 auto !important;
    padding: 0 2em !important;
}

/* 在大屏幕上增加最大宽度 */
@media (min-width: 1400px) {
    .wy-nav-content {
        max-width: 80% !important;
    }
}

/* 在中等屏幕上保持适中宽度 */
@media (max-width: 1200px) {
    .wy-nav-content {
        max-width: 90% !important;
    }
}

/* 在小屏幕上使用更大百分比 */
@media (max-width: 768px) {
    .wy-nav-content {
        max-width: 95% !important;
        padding: 0 1em !important;
    }
}


/* 代码块样式 */
code {
    background: #f8f8f8;
    color: #e83e8c;
}


/* 移除标题的自动编号 */
.section>.section-number {
    display: none;
}

/* 如果需要，也可以移除目录中的编号 */
.toctree-wrapper .toctree-l1>a .toctree-expand,
.toctree-wrapper .toctree-l1>a:before {
    display: none;
}

/* 移除表格和图片的编号 */
.caption-number {
    display: none;
}