
    /* 核心容器宽度优化 */
@charset "utf-8";
    .custom-main-container {
        width: 1480px;
        max-width: 95%;
        margin: 0 auto;
    }
    
    /* 面包屑样式 */
    .bread-crumb-section {
        background: #f8f9fa;
        padding: 30px 0;
        margin-bottom: 40px;
    }
    .text-heading { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
    .breadcrumb { background: transparent; padding: 0; display: flex; list-style: none; gap: 10px; }
    .breadcrumb-item a { color: #666; text-decoration: none; }
    .breadcrumb-item.active { color: #FF8C00; }
    .breadcrumb-item + .breadcrumb-item::before { content: "/"; color: #ccc; margin-right: 10px; }

    /* 文章列表样式 - 主流卡片设计 */
    .posts-con { display: flex; flex-direction: column; gap: 30px; }
    .post-card {
        display: flex;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #eee;
        transition: all 0.3s ease;
    }
    .post-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-color: #FF8C00;
    }
    
    /* 左侧图片 */
    .post-img-wrap {
        width: 400px;
        height: 260px;
        flex-shrink: 0;
        overflow: hidden;
    }
    .post-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .post-card:hover .post-img-wrap img { transform: scale(1.05); }

    /* 右侧文案 */
    .post-content-wrap {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .post-content-wrap h2 { margin: 0 0 15px; font-size: 24px; line-height: 1.3; }
    .post-content-wrap h2 a { color: #222; text-decoration: none; transition: 0.3s; }
    .post-content-wrap h2 a:hover { color: #FF8C00; }
    
    .post-desc {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .post-meta { font-size: 14px; color: #999; display: flex; align-items: center; gap: 5px; }

    /* 分页 */
    .fenye { margin-top: 50px; text-align: center; padding: 20px 0; }

    /* 手机端自适应逻辑 */
    @media (max-width: 991px) {
        .post-card { flex-direction: column; }
        .post-img-wrap { width: 100%; height: 220px; }
        .post-content-wrap { padding: 20px; }
        .post-content-wrap h2 { font-size: 20px; }
    }