/* 调整 Read the Docs 主题的页面宽度 */

/* 自适应屏幕宽度 - 使用百分比并设置合理的边距 */
.wy-nav-content {
    max-width: none !important;
    padding: 0 2rem;
}

/* 在大屏幕上限制最大宽度，避免内容过于分散 */
@media screen and (min-width: 1400px) {
    .wy-nav-content {
        max-width: 90% !important;
    }
}

/* 在超大屏幕上设置绝对最大宽度 */
@media screen and (min-width: 1800px) {
    .wy-nav-content {
        max-width: 1600px !important;
    }
}