    .post {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
    }

    .post-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .post-header h1 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 1rem;
    }

    .post-content {
        line-height: 1.8;
        font-size: 1.1rem;
        color: #444;
    }

    .post-content h1,
    .post-content h2,
    .post-content h3 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .post-content h1 {
        font-size: 2rem;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0.5rem;
    }

    .post-content h2 {
        font-size: 1.7rem;
    }

    .post-content h3 {
        font-size: 1.4rem;
    }

    .post-content p {
        margin-bottom: 1rem;
    }

    .post-content ul,
    .post-content ol {
        margin-bottom: 1rem;
        padding-left: 2rem;
    }

    .post-content li {
        margin-bottom: 0.5rem;
    }

    .post-content blockquote {
        border-left: 4px solid #007bff;
        padding-left: 1rem;
        margin: 1.5rem 0;
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 0 5px 5px 0;
    }

    .post-content code {
        background: #f8f9fa;
        padding: 0.2rem 0.4rem;
        border-radius: 3px;
        font-family: 'Courier New', monospace;
        font-size: 0.9rem;
    }

    .post-content pre {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 5px;
        padding: 1rem;
        overflow-x: auto;
        margin: 1rem 0;
    }

    .post-content pre code {
        background: none;
        padding: 0;
    }

    .post-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
    }

    .post-content th,
    .post-content td {
        border: 1px solid #e9ecef;
        padding: 0.75rem;
        text-align: left;
    }

    .post-content th {
        background: #f8f9fa;
        font-weight: bold;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .post {
            padding: 1rem;
        }

        .post-header h1 {
            font-size: 2rem;
        }
    }
