
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #fef7e8;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
            color: #2c2418;
            line-height: 1.55;
            padding: 0 0 40px;
        }

        /* 主容器 - 移动优先，居中卡片式 */
        .page {
            max-width: 640px;
            margin: 0 auto;
            background: #fffdf9;
            box-shadow: 0 0 20px rgba(0,0,0,0.02);
        }

        /* 头部导航 */
        .header {
            background: #ffffff;
            padding: 14px 18px;
            border-bottom: 1px solid #f0e2d0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: sticky;
            top: 0;
            z-index: 10;
            backdrop-filter: blur(8px);
            background: rgba(255,253,249,0.96);
        }
        .logo img {
            height: 38px;
            width: auto;
            vertical-align: middle;
        }
        .nav {
            display: flex;
            gap: 18px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav a {
            text-decoration: none;
            color: #6b4c2c;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .nav a:hover { color: #c27e3a; }

        /* 内容区 */
        .content {
            padding: 18px 16px 32px;
        }

        /* 文章卡片 */
        .article-card {
            background: #ffffff;
            border-radius: 28px;
            padding: 24px 20px;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02);
            margin-bottom: 28px;
            border: 1px solid #f3e9de;
        }
        h1 {
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 14px;
            color: #2b2a27;
            letter-spacing: -0.2px;
        }
        .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            font-size: 0.8rem;
            color: #8f765a;
            padding-bottom: 14px;
            margin-bottom: 20px;
            border-bottom: 1px solid #f0e2d2;
        }
        .badge {
            background: #fef0e2;
            color: #b56f2e;
            border-radius: 40px;
            padding: 4px 12px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        /* 文章正文样式 */
        .article-body {
            font-size: 1rem;
            color: #2c2418;
        }
        .article-body p {
            margin-bottom: 1.1em;
        }
        .article-body img {
            max-width: 100%;
            border-radius: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            display: block;
        }
        .article-body h3 {
            font-size: 1.35rem;
            margin: 1.4em 0 0.6em;
            font-weight: 600;
            padding-left: 8px;
            border-left: 4px solid #e7c8a3;
        }
        .day-list {
            background: #fefaf4;
            border-radius: 20px;
            padding: 12px 18px;
            margin: 20px 0;
            border-left: 5px solid #e0bc8c;
        }
        .day-item {
            margin: 18px 0;
            padding-bottom: 12px;
            border-bottom: 1px dashed #ede0d0;
        }
        .day-item strong {
            font-size: 1.1rem;
            color: #a5632a;
            display: inline-block;
            margin-bottom: 6px;
        }

        /* 推荐区域 */
        .section-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0 0 16px 0;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding-left: 12px;
            border-left: 4px solid #e0bc8c;
        }
        .rec-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .rec-item {
            display: flex;
            gap: 14px;
            background: #ffffff;
            border-radius: 20px;
            padding: 12px;
            transition: 0.2s;
            border: 1px solid #f2e6da;
            text-decoration: none;
        }
        .rec-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.05);
            border-color: #e2cfb6;
        }
        .rec-img {
            width: 85px;
            height: 85px;
            object-fit: cover;
            border-radius: 18px;
            background: #f2e2d0;
        }
        .rec-info {
            flex: 1;
        }
        .rec-title {
            font-weight: 600;
            color: #2b2a27;
            font-size: 0.95rem;
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .rec-meta {
            font-size: 0.7rem;
            color: #b4936e;
            display: flex;
            gap: 10px;
        }

        /* 友情链接区域 */
        .friend-links {
            background: #fffcf5;
            border-radius: 24px;
            padding: 20px 16px;
            margin-top: 20px;
        }
        .friend-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .friend-link {
            background: #faf1e6;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #7b5a3c;
            text-decoration: none;
        }

        /* 底部 */
        .footer {
            text-align: center;
            padding: 28px 20px;
            font-size: 0.7rem;
            color: #ad9279;
            border-top: 1px solid #f0e2d2;
            margin-top: 20px;
            background: #fffbf5;
        }

        /* 回到顶部 */
        .go-top {
            position: fixed;
            bottom: 24px;
            right: 20px;
            background: #fff;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            cursor: pointer;
            border: 1px solid #eedbc8;
            transition: 0.2s;
        }
        .go-top:hover {
            background: #e9dac8;
        }

        @media (max-width: 500px) {
            h1 { font-size: 1.55rem; }
            .article-card { padding: 18px 16px; }
        }
    </style>