
    <style>
        /* ========== 全局样式 ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #d4af7a;
            --primary-dark: #b88b4a;
            --text-main: #2c2418;
            --text-soft: #6b4f32;
            --text-light: #9b8264;
            --bg-page: #fef9f0;
            --bg-card: #ffffff;
            --border-light: #f0e2d2;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
            --radius-card: 20px;
        }

        body {
            background-color: var(--bg-page);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--text-main);
            line-height: 1.55;
            margin: 0;
            padding: 0;
        }

        .page {
            max-width: 640px;
            margin: 0 auto;
            background: #fffdf9;
            box-shadow: 0 0 20px rgba(0,0,0,0.02);
            min-height: 100vh;
        }

        /* 头部导航（将兼容原有header输出，若原有header有不同样式，此部分会叠加） */
        .page-header {
            background: #ffffff;
            padding: 12px 16px;
            border-bottom: 1px solid #f0e2d0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: sticky;
            top: 0;
            z-index: 10;
            background: rgba(255,253,249,0.96);
            backdrop-filter: blur(8px);
        }
        .logo img {
            height: 38px;
            width: auto;
            vertical-align: middle;
        }
        .nav {
            display: flex;
            gap: 16px;
            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; }

        /* 轮播图 Banner */
        .banner {
            margin: 0 0 20px 0;
            border-radius: 0 0 24px 24px;
            overflow: hidden;
            position: relative;
            background: #e9dbc9;
        }
        .banner .bd {
            position: relative;
        }
        .banner .bd li {
            list-style: none;
            position: relative;
        }
        .banner .bd img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .banner .bd .tit {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
            color: white;
            padding: 20px 16px 12px;
            margin: 0;
            font-size: 1rem;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }
        .banner .hd {
            position: absolute;
            bottom: 12px;
            left: 0;
            right: 0;
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 5;
        }
        .banner .hd li {
            width: 7px;
            height: 7px;
            border-radius: 10px;
            background: rgba(255,255,240,0.6);
            display: inline-block;
            margin: 0 3px;
            transition: 0.2s;
            list-style: none;
            cursor: pointer;
        }
        .banner .hd li.on {
            width: 20px;
            background: #e7b874;
        }

        /* 内容区域 */
        .page-content {
            padding: 0 16px 32px;
        }

        /* 文章列表卡片 */
        .section-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .item {
            display: flex;
            gap: 14px;
            background: var(--bg-card);
            border-radius: var(--radius-card);
            padding: 12px;
            text-decoration: none;
            transition: all 0.25s ease;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .item:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
            border-color: #e6d2bc;
        }
        .item .pic {
            width: 96px;
            height: 96px;
            object-fit: cover;
            border-radius: 18px;
            background: #f2e2d0;
            flex-shrink: 0;
        }
        .item .con {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .item .title {
            font-size: 1rem;
            font-weight: 600;
            color: #2b2a27;
            line-height: 1.4;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .item .info {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.7rem;
        }
        .item .tag {
            background: #f2e6da;
            color: #a5713c;
            padding: 4px 12px;
            border-radius: 30px;
            font-weight: 500;
        }
        .item .time {
            color: var(--text-light);
        }

        /* 分页样式 */
        .section-btm {
            margin-top: 28px;
            margin-bottom: 20px;
            text-align: center;
        }
        .prev_page {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin: 10px 0;
        }
        .prev_page a, .prev_page span {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 40px;
            background: white;
            border: 1px solid #eddbbc;
            font-size: 0.85rem;
            color: #7a5a3a;
            text-decoration: none;
            transition: 0.2s;
        }
        .prev_page a:hover {
            background: #f4e8db;
            border-color: #cfb48a;
        }
        .prev_page .current {
            background: #e7c8a3;
            color: #4f351c;
            border-color: #dbbc8c;
            font-weight: 500;
        }

        /* 广告位 */
        .adver-place {
            margin: 20px 0;
            background: #f8efe3;
            border-radius: 20px;
            padding: 12px;
            text-align: center;
            font-size: 0.75rem;
            color: #a77f4e;
        }

        /* 底部（会与include的footer合并，此处作为后备样式） */
        .page-footer {
            margin-top: 20px;
            background: #fffbf5;
            border-top: 1px solid #f0e2d2;
            padding: 20px 16px;
            text-align: center;
            font-size: 0.7rem;
            color: #ad9279;
        }
        .copyright p {
            margin: 6px 0;
        }
        .copyright a {
            color: #ad9279;
            text-decoration: none;
        }

        /* 回到顶部 */
        .sidebar {
            position: fixed;
            bottom: 24px;
            right: 20px;
            z-index: 99;
        }
        .sidebar .item#totop {
            background: white;
            width: 48px;
            height: 48px;
            border-radius: 60px;
            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;
        }
        .sidebar .item#totop:hover {
            background: #e7d6c4;
        }
        .icon-totop {
            display: inline-block;
            width: 22px;
            height: 22px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23855b2e" stroke-width="2"><path d="M12 19V5M5 12l7-7 7 7"/></svg>');
            background-size: cover;
        }

        @media (max-width: 500px) {
            .item .pic {
                width: 80px;
                height: 80px;
            }
            .item .title {
                font-size: 0.9rem;
            }
            .prev_page a, .prev_page span {
                padding: 5px 12px;
                font-size: 0.7rem;
            }
        }
    </style>
