/* 基础重置：消除浏览器默认样式，提升兼容性 */* {    margin: 0;    padding: 0;    box-sizing: border-box;    -webkit-font-smoothing: antialiased; /* 字体抗锯齿，提升观感 */}/* 全局样式：百度爬虫偏好清晰的文本结构 */body {    font-family: "Microsoft Yahei", "PingFang SC", sans-serif; /* 适配中文 */    font-size: 16px;    line-height: 1.8;    color: #333;    background-color: #f8f8f8;    padding: 20px 0;}/* 容器：居中+留白，提升阅读体验 */.container {    max-width: 1200px;    margin: 0 auto;    padding: 30px;    background-color: #fff;    border-radius: 8px;    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* 轻微阴影，不影响爬虫 */}/* 标题：突出关键词，适配SEO */h1 {    font-size: 32px;    color: #c0392b;    margin-bottom: 25px;    padding-bottom: 15px;    border-bottom: 1px solid #eee;    word-break: break-all; /* 适配长关键词 */}h3 {    font-size: 20px;    color: #333;    margin-bottom: 15px;}/* 文章内容：清晰排版，利于百度抓取文本 */.article-content {    margin-bottom: 40px;    font-size: 16px;    color: #333;}.article-content p {    margin-bottom: 15px;    text-indent: 2em; /* 首行缩进，符合中文阅读习惯 */}.article-content strong {    color: #c0392b; /* 关键词加粗高亮，不影响爬虫识别 */}/* PDF内嵌容器：适配所有设备，提升体验 */.pdf-box {    margin: 40px 0;    padding: 20px;    border: 1px solid #eee;    border-radius: 8px;    background-color: #f9f9f9;}.pdf-box embed {    border-radius: 4px;    transition: all 0.3s ease;}.pdf-box embed:hover {    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);}/* 下载链接：醒目但不刺眼 */.pdf-box a {    color: #c0392b;    text-decoration: none;    font-weight: 500;}.pdf-box a:hover {    text-decoration: underline;}/* 相关推荐：内链样式，提升权重传递 */.related-articles {    margin-top: 40px;    padding-top: 20px;    border-top: 1px dashed #eee;}.related-articles ul {    list-style: none;    padding: 0;    display: flex;    flex-wrap: wrap;    gap: 15px; /* 间距适中，避免拥挤 */}.related-articles li a {    color: #c0392b;    text-decoration: none;    padding: 6px 12px;    border: 1px solid #eee;    border-radius: 4px;    transition: all 0.2s ease;}.related-articles li a:hover {    background-color: #c0392b;    color: #fff;    border-color: #c0392b;}/* 响应式适配：手机端也能正常显示 */@media (max-width: 768px) {    .container {        padding: 15px;        margin: 0 10px;    }        h1 {        font-size: 24px;    }        .pdf-box embed {        height: 400px !important; /* 手机端缩短PDF高度 */    }        .related-articles ul {        flex-direction: column;        gap: 10px;    }}