/* 全局样式 */
#home {
    background-color: #121212;
    color: #ccc;
    font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
}

/* 头部标题 */
#header {
    background: #1e1e1e;
    color: #fff;
    border-bottom: 1px solid #333;
}

/* 文章内容区 */
#main {
    max-width: 900px;
    margin: 20px auto;
    padding: 25px;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* 代码块高亮 */
pre code {
    background: #282c34;
    color: #98c379;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.6;
}