/* 目录样式 */
#toc {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}
#toc h2 {
    margin-top: 0;
    color: #333;
}
#toc ul {
    list-style: none;
    padding: 0;
}
#toc li {
    margin: 10px 0;
}
#toc a {
    text-decoration: none;
    color: #0066cc;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}
#toc a:hover {
    background-color: #e0e0e0;
}

/* 图片容器样式 */
#images-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image-item {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    max-width: 800px;
}
.image-item img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: block;
}

/* 动态滚动条样式 */
:root {
    --scrollbar-color: #95A5A6;
}

/* WebKit内核浏览器（Chrome、Safari、Edge） */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-color);
    border-radius: 6px;
    border: 2px solid #f1f1f1;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-color);
    filter: brightness(0.85);
}

/* Firefox浏览器 */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-color) #f1f1f1;
}
