body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

/* 报告内容区域 */
.content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow-x: auto;  /* 横向滚动（如果需要） */
}

/* 保持原有格式，但添加自动换行 */
.content pre {
    white-space: pre-wrap;      /* 保留空格和换行，同时自动换行 */
    white-space: -moz-pre-wrap;  /* Mozilla */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* 长单词换行 */
    word-break: break-word;      /* 强制长单词换行 */
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    color: #2d3748;
}

/* 入口区域 */
.entry {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.entry h2 {
    margin: 0 0 15px 0;
    font-size: 24px;
}

.entry h2 a {
    color: #1a5a9c;
    text-decoration: none;
    transition: color 0.2s;
}

.entry h2 a:hover {
    color: #0d3b66;
    text-decoration: underline;
}

.date {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* 文章标题 */
h1 {
    color: #1a5a9c;
    border-bottom: 3px solid #1a5a9c;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 32px;
}

/* 存档链接 */
.archive-link {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.archive-link a {
    color: #1a5a9c;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: background 0.2s;
}

.archive-link a:hover {
    background: #e9ecef;
    text-decoration: none;
}

/* 存档列表 */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 12px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #1a5a9c;
}

ul li a {
    color: #1a5a9c;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

ul li a:hover {
    text-decoration: underline;
}

/* 首页报告摘要 */
.content pre:not(:only-child) {
    max-height: 200px;
    overflow-y: auto;  /* 摘要区域固定高度，可滚动 */
}

/* 响应式设计 */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .content pre {
        font-size: 12px;
    }
}
