
        /* ===== 全局重置 & 基础 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: #f5f5f5;
            color: #1a1a1a;
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 头部（淘宝橙红色主题） ===== */
        .header {
            background: linear-gradient(135deg, #ff4400, #ff6a00);
            padding: 16px 0;
            border-bottom: 3px solid #cc3700;
            box-shadow: 0 4px 20px rgba(255, 68, 0, 0.35);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo h1 {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .logo .sub {
            font-size: 14px;
            color: rgba(255,255,255,0.9);
            font-weight: 400;
            -webkit-text-fill-color: rgba(255,255,255,0.9);
            background: none;
        }

        .nav a {
            margin-left: 28px;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            padding: 6px 14px;
            border-radius: 6px;
        }

        .nav a:hover {
            background: rgba(0,0,0,0.15);
            color: #fff;
        }

        .nav a.active {
            background: rgba(0,0,0,0.2);
        }

        /* ===== 面包屑 ===== */
        .breadcrumb-wrapper {
            width: 100%;
            max-width: 1280px;
            padding: 14px 24px 6px;
            margin: 0 auto;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            font-size: 14px;
            color: #7a7a7a;
            padding: 8px 0 12px;
            border-bottom: 1px solid #e8e0d8;
        }

        .breadcrumb .home-icon {
            display: inline-flex;
            align-items: center;
            margin-right: 6px;
            color: #ff4400;
        }

        .breadcrumb a {
            color: #ff4400;
            text-decoration: none;
            transition: color 0.2s;
            font-weight: 500;
        }

        .breadcrumb a:hover {
            color: #cc3700;
            text-decoration: underline;
        }

        .breadcrumb .separator {
            margin: 0 8px;
            color: #b0a090;
            font-weight: 300;
            user-select: none;
        }

        .breadcrumb .current {
            color: #1a1a1a;
            font-weight: 600;
        }

        /* ===== 主体布局 ===== */
        .main-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 16px 0 40px;
        }

        /* ===== 广告位（淘宝橙红边框） ===== */
        .ad-wrapper {
            width: 100%;
            max-width: 1280px;
            padding: 0 24px;
            margin-bottom: 20px;
        }

        .ad-banner {
            display: block;
            background: #ffffff;
            border-radius: 24px;
            padding: 16px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            border: 2px solid #ff4400;
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            overflow: hidden;
        }

        .ad-banner:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(255, 68, 0, 0.15);
        }

        .ad-banner img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        /* ===== 双栏内容 ===== */
        .main-layout {
            display: flex;
            gap: 32px;
            width: 100%;
            max-width: 1280px;
            padding: 0 24px;
            align-items: flex-start;
            justify-content: center;
        }

        /* ===== 左侧文章列表 ===== */
        .article-list-main {
            flex: 2.2;
            max-width: 820px;
            min-width: 0;
            background: #ffffff;
            border-radius: 24px;
            padding: 28px 30px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            border: 1px solid #f0ece8;
        }

        /* ---- 列表头部 ---- */
        .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .list-header h3 {
            font-size: 18px;
            color: #1a1a1a;
            font-weight: 700;
        }

        .list-header .current-tag {
            font-size: 13px;
            color: #ff4400;
            background: #fff0e8;
            padding: 2px 16px;
            border-radius: 30px;
            font-weight: 600;
        }

        /* 文章条目 */
        .post-item {
            padding: 16px 0;
            border-bottom: 1px solid #f0ece8;
            transition: background 0.2s;
        }

        .post-item:last-child {
            border-bottom: none;
        }

        .post-item .post-meta {
            font-size: 13px;
            color: #7a7a7a;
            margin-bottom: 4px;
        }

        .post-item .post-meta .date {
            margin-right: 16px;
        }

        .post-item .post-meta .tag-label {
            display: inline-block;
            background: #fff0e8;
            padding: 0 12px;
            border-radius: 30px;
            font-size: 12px;
            color: #ff4400;
            font-weight: 600;
        }

        .post-item h4 a {
            font-size: 17px;
            font-weight: 600;
            color: #1a1a1a;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .post-item h4 a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff4400, #ff6a00);
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 2px;
        }

        .post-item h4 a:hover {
            color: #ff4400;
        }

        .post-item h4 a:hover::after {
            width: 100%;
        }

        .post-item .excerpt {
            font-size: 14px;
            color: #5a5a5a;
            margin-top: 6px;
            line-height: 1.7;
        }

        /* ===== 分页 ===== */
       .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0ece8;
    list-style: none;
    padding-left: 0;
}

.pagination li {
    display: inline-block;
    list-style: none;
}

.pagination li a, 
.pagination li.active a,
.pagination li span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    color: #ff4400;
    background: #fff0e8;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 36px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.pagination li a:hover {
    background: #ff4400;
    color: #fff;
}

.pagination li.active a,
.pagination li.active span {
    background: linear-gradient(135deg, #ff4400, #ff6a00);
    color: #fff;
    font-weight: 600;
}

        /* ===== 右侧边栏 ===== */
        .sidebar {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
        }

        .sidebar-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 22px 20px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            border: 1px solid #f0ece8;
        }

        .sidebar-card h4 {
            font-size: 16px;
            color: #1a1a1a;
            padding-bottom: 12px;
            border-bottom: 3px solid #ff4400;
            margin-bottom: 16px;
        }

        .sidebar-card ul {
            list-style: none;
        }

        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f4f0ec;
        }

        .sidebar-card ul li:last-child {
            border-bottom: none;
        }

        .sidebar-card ul li a {
            color: #2a2a2a;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .sidebar-card ul li a:hover {
            color: #ff4400;
        }

        .sidebar-card ul li .post-date {
            display: block;
            font-size: 12px;
            color: #a09080;
            margin-top: 2px;
        }

        /* ===== 侧边栏广告位 ===== */
        .sidebar-ad {
            background: #ffffff;
            border-radius: 24px;
            padding: 16px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            text-align: center;
            border: 2px solid #ff4400;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            overflow: hidden;
        }

        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(255, 68, 0, 0.15);
        }

        .sidebar-ad img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        .sidebar-tag a {
            display: inline-block;
            background: #fff0e8;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 13px;
            color: #ff4400;
            text-decoration: none;
            margin: 0 6px 10px 0;
            transition: 0.2s;
            font-weight: 500;
        }

        .sidebar-tag a:hover {
            background: #ff4400;
            color: #fff;
        }

        /* ===== 底部（淘宝橙红主题） ===== */
        .footer {
            background: #1a1a1a;
            color: #b0a090;
            padding: 40px 0 30px;
            border-radius: 40px 40px 0 0;
            margin-top: 40px;
            border-top: 4px solid #ff4400;
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .footer-info {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-info span {
            font-size: 14px;
        }

        .footer-info .highlight {
            color: #ff6a00;
            font-weight: 600;
        }

        .footer-social a {
            color: #b0a090;
            margin-left: 20px;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-social a:hover {
            color: #ff6a00;
        }

        .footer-copy {
            text-align: center;
            font-size: 13px;
            color: #5a5a5a;
            border-top: 1px solid #2a2a2a;
            padding-top: 25px;
            margin-top: 25px;
        }

        .footer-copy a {
            color: #ff6a00;
            text-decoration: none;
        }

        .footer-copy a:hover {
            color: #ff8833;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 992px) {
            .main-layout {
                flex-direction: column;
                align-items: center;
            }
            .article-list-main {
                max-width: 100%;
                width: 100%;
            }
            .sidebar {
                max-width: 100%;
                width: 100%;
            }
            .ad-wrapper {
                padding: 0 16px;
            }
            .breadcrumb-wrapper {
                padding: 12px 16px 4px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 12px;
            }
            .nav a {
                margin: 0 10px;
                font-size: 14px;
                padding: 4px 10px;
            }
            .logo h1 {
                font-size: 20px;
            }
            .article-list-main {
                padding: 18px;
            }
            .ad-banner {
                padding: 12px;
            }
            .sidebar-ad {
                padding: 12px;
            }
            .list-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .pagination a, .pagination span {
                padding: 4px 12px;
                font-size: 13px;
            }
            .main-wrapper {
                margin: 10px 0 30px;
            }
            .breadcrumb {
                font-size: 13px;
                padding: 6px 0 10px;
            }
        }
