<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>我的生活点滴</title>
    <style>
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #f6f8fa; color: #24292f; line-height: 1.6; padding: 20px; }
        .container { max-width: 680px; margin: 50px auto; background: #ffffff; padding: 35px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
        header { border-bottom: 1px solid #d0d7de; padding-bottom: 16px; margin-bottom: 28px; }
        h1 { font-size: 26px; color: #1f2328; margin: 0; font-weight: 600; }
        .subtitle { font-size: 14px; color: #57606a; margin-top: 5px; }
        .post { margin-bottom: 30px; }
        .post-title { font-weight: 600; color: #0969da; margin-bottom: 6px; font-size: 18px; text-decoration: none; display: inline-block; }
        .post-date { font-size: 13px; color: #57606a; margin-bottom: 10px; }
        .post-content { font-size: 15px; color: #24292f; text-align: justify; }
        .divider { height: 1px; background-color: #eee; margin: 25px 0 15px 0; }
        .footer { text-align: center; margin-top: 50px; font-size: 13px; color: #57606a; border-top: 1px solid #d0d7de; padding-top: 20px; }
        .footer a { color: #0969da; text-decoration: none; font-weight: 500; }
        .footer a:hover { text-decoration: underline; }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1>我的生活点滴</h1>
            <div class="subtitle">记录日常的琐碎，留住时间的痕迹。</div>
        </header>

        <div class="post">
            <div class="post-title">🍃 记录一次周末的徒步旅行</div>
            <div class="post-date">📅 发表于 2023-06-28</div>
            <div class="post-content">远离了城市的喧嚣，周末和朋友一起去了京郊的峡谷徒步。一路上听着溪水潺潺，呼吸着山林间带有泥土清香的空气，平日里积攒的疲惫仿佛一扫而空。生活不仅有工作和电脑屏幕，还有眼前的绿水青山。数字化时代，用文字把这些瞬间定格下来，真好。</div>
        </div>

        <div class="divider"></div>

        <div class="post">
            <div class="post-title">☕ 阳台上的多肉与午后阳光</div>
            <div class="post-date">📅 发表于 2022-06-15</div>
            <div class="post-content">初夏的阳光开始变得有些炽热，把前阵子刚换盆的多肉植物搬到了阳台的阴凉处。看着它们从干瘪慢慢变得饱满，甚至泛起一层淡淡的粉红，这种小小的生命力让人心情莫名变好。静下心来照顾一盆植物，也是一种调剂生活节奏的好方式。</div>
        </div>

        <div class="footer">
            <p>© 2026 我的生活点滴 | <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">陕ICP备2022000781号</a></p>
        </div>
    </div>
</body>
</html>