
    /* 1. 彻底移除全局 body 影响，将样式严格锁定在文章容器内，解决绿条泄漏 */
    .blog-container {
        max-width: 800px;
        margin: 20px auto; /* 调整外边距，避免撑开Ueeshop顶部导航 */
        background-color: #ffffff; /* 纯白卡片 */
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 15px rgba(26, 83, 53, 0.05);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333333;
        line-height: 1.6;
    }

    /* 2. 标题颜色锁定 */
    h1.blog-title {
        color: #1A5335; /* 深墨绿标题 */
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
        margin-top: 0;
    }

    h2.section-title {
        color: #1A5335; /* 深墨绿标题 */
        font-size: 22px;
        margin-top: 35px;
        margin-bottom: 15px;
        border-left: 4px solid #3FA9F5; /* 天蓝左边框高亮 */
        padding-left: 12px;
    }

    .blog-container p {
        font-size: 16px;
        color: #4a4a4a;
        margin-bottom: 20px;
    }

    /* 3. 内部超链接样式 */
    .inner-link {
        color: #3FA9F5; /* 天蓝主色 */
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dashed #3FA9F5;
        transition: opacity 0.2s;
    }
    .inner-link:hover {
        opacity: 0.8;
    }

    .highlight-text {
        color: #3FA9F5; /* 天蓝高亮 */
        font-weight: bold;
    }

    /* 4. SEO 图片样式优化 */
    .blog-image-container {
        margin: 25px 0;
        text-align: center;
    }
    .blog-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .image-caption {
        font-size: 13px;
        color: #888888;
        margin-top: 8px;
        font-style: italic;
    }

    /* 5. 强调卡片块 */
    .quote-box {
        background-color: #f2f9f5;
        border-radius: 8px;
        padding: 20px;
        margin: 30px 0;
        border: 1px solid #3A8E67; /* 草绿未选中规格按钮色作为边框 */
    }

    .quote-box h3 {
        color: #1A5335;
        margin-top: 0;
    }

    /* 6. Ueeshop 按钮样式锁定 */
    .cta-button-container {
        text-align: center;
        margin: 40px 0 20px 0;
    }

    .amazon-cta-btn {
        display: inline-block;
        background-color: #3FA9F5; /* 天蓝主按钮 */
        color: #ffffff !important;
        font-size: 18px;
        font-weight: bold;
        padding: 15px 35px;
        text-decoration: none;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(63, 169, 245, 0.3);
        transition: all 0.3s ease;
    }

    .amazon-cta-btn:hover {
        background-color: #1d93ea; 
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(63, 169, 245, 0.4);
    }
