
    /* 1. 全局和排版设置 */
    .blog-content {
        font-family: 'Cambria', serif;
        line-height: 1.6;
        color: #333;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .blog-content h2 {
        font-size: 1.8em;
        color: #006E61;
        border-bottom: 2px solid #006E61;
        padding-bottom: 5px;
        margin-top: 2em;
    }
    .blog-content h3 {
        font-size: 1.3em;
        color: #555;
        margin-top: 1.5em;
    }
    .blog-content p {
        margin-bottom: 1.5em;
        text-align: justify;
    }

    /* 2. 区块和图片样式 */
    .blog-content .section-block {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    .blog-content img {
        width: 100%;
        height: auto;
        margin: 20px 0;
        border-radius: 4px;
    }
    
    /* 3. 特色表格样式 */
    .blog-content .specs-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 0.95em;
    }
    .blog-content .specs-table th, .blog-content .specs-table td {
        padding: 10px 15px;
        text-align: left;
        border: 1px solid #ddd;
    }
    .blog-content .specs-table th {
        width: 40%;
        background-color: #e6f7f5;
        color: #333;
        font-weight: 600;
    }

    /* 4. 预售特别提示框 */
    .blog-content .preorder-announcement {
        background-color: #f2f9f8;
        border-left: 5px solid #006E61;
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
    }

    /* 按钮样式 */
    .blog-content .cta-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: #006E61;
        color: white !important;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        margin-top: 20px;
    }

    @media (max-width: 600px) {
        .blog-content h2 { font-size: 1.5em; }
    }
