body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}

/* 添加响应式设计 */
@media screen and (max-width: 768px) {
    body {
        padding: 5px;
    }
    .book-container {
        padding: 5px;
    }
}

.book-container {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
}
.author {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
}
.chapter {
    margin-bottom: 40px;
}
.chapter-title {
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
p {
    margin-bottom: 1.2em;
    text-align: justify;
}
.navigation {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.navigation a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}
.navigation a:hover {
    text-decoration: underline;
} 