
/* ========================================
   自定义模板样式
   ======================================== */

/* 自定义页面标记 */
body[data-custom-template="active"] {
    /* 添加自定义样式，表示自定义模板已激活 */
}

/* 自定义导航栏样式示例 */
.custom-navbar {
    /* 可以在这里添加自定义导航栏样式 */
}

/* 自定义页脚样式 */
.custom-footer-content {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    margin-top: 20px;
}

/* 返回顶部按钮悬停效果 */
#back-to-top:hover {
    background: #0056b3 !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* ========================================
   原有样式 - 版本选择器
   ======================================== */

/* 版本选择器 */
#toc span {
    font-size: 18px; /* 你可以根据需要调整字体大小 */
    font-weight: bolder; /* 加粗 */
}

#toc {
    margin-top: 20px;
}

.pagination {
    display: flex;
    align-items: center;
}

#pageSelect {
    margin-bottom: 18px; /* 可选：增加底部间距 */
    padding: 4px 10px;
    margin-left: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
    appearance: auto; /* 去掉默认的下拉箭头 */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="#333" d="M2 0L0 2h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px 6px;
}

#pageSelect:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* 版本选择器 */