    /* 高科技风格颜色定义 - 独立样式 */
    :root {
        --list-white: #ffffff;
        --list-silver: #f8f9fa;
        --list-light-gray: #f5f7fa;
        --list-dark: #1a1d29;
        --list-blue: #4361ee;
        --list-cyan: #00b4d8;
        --list-teal: #06d6a0;
        --list-accent: #7209b7;
        --list-border: rgba(0, 0, 0, 0.08);
        --list-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        --list-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
        --list-gradient: linear-gradient(135deg, var(--list-blue), var(--list-cyan));
    }
    
    /* 列表容器 */
    .list-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    /* Banner轮播区域 - 放在最顶部 */
    .list-banner {
        width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .list-banner-slides {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .list-banner-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease;
    }
    
    .list-banner-slide.active {
        opacity: 1;
    }
    
    .list-banner-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .list-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.2) 0%, 
            rgba(0, 0, 0, 0.6) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    
    .list-banner-content {
        text-align: center;
        color: white;
        max-width: 800px;
    }
    
    .list-banner-title {
        font-family: 'Manrope', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
    }
    
    .list-banner-text {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    /* 轮播导航点 */
    .list-banner-nav {
        position: absolute;
        bottom: 1.5rem;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        z-index: 10;
    }
    
    .list-banner-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .list-banner-dot.active {
        background: white;
        transform: scale(1.2);
    }
    
    .list-banner-dot:hover {
        background: rgba(255, 255, 255, 0.8);
    }
    
    /* 栏目头部 */
    .list-header {
        padding: 1.5rem 0 2rem;
        text-align: center;
        border-bottom: 1px solid var(--list-border);
        margin-bottom: 2rem;
    }
    
    .list-category-title {
        font-family: 'Manrope', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        color: var(--list-dark);
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    .list-category-desc {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        color: #718096;
        max-width: 800px;
        margin: 0 auto 1.5rem;
        line-height: 1.6;
    }
    
    /* 专题介绍框架 - 两栏布局版本 */
    .list-display {
        background: var(--list-white);
        border: 1px solid var(--list-border);
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 2.5rem;
        box-shadow: var(--list-shadow);
    }
    
    .list-display h2 {
        font-family: 'Manrope', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--list-dark);
        margin-bottom: 1.2rem;
        text-align: center;
        padding-bottom: 0.8rem;
        border-bottom: 2px solid var(--list-border);
    }
    
    .list-display h3 {
        font-family: 'Manrope', sans-serif;
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--list-dark);
        margin-bottom: 0.8rem;
    }
    
    .list-display p {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        color: #4a5568;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
    
    .list-display .display-image {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        margin: 0.8rem auto 1.5rem;
        border: 2px solid var(--list-border);
    }
    
    .list-display .display-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* 两栏布局 */
    .list-two-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin: 1.5rem 0;
    }
    
    .list-column {
        padding: 1.2rem;
        background: var(--list-silver);
        border-radius: 12px;
        border: 1px solid var(--list-border);
    }
    
    .list-column ul, 
    .list-column ol {
        margin: 0.5rem 0 0.5rem 1.2rem;
    }
    
    .list-column li {
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        color: #4a5568;
        line-height: 1.5;
        margin-bottom: 0.3rem;
    }
    
    .list-display .highlight-box {
        background: rgba(67, 97, 238, 0.05);
        border-left: 3px solid var(--list-blue);
        padding: 0.8rem 1.2rem;
        margin: 1.2rem 0 0.8rem;
        border-radius: 0 8px 8px 0;
    }
    
    .list-display .highlight-box p {
        margin-bottom: 0;
        font-style: italic;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* 紧凑布局控制 */
    .list-display-content {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    /* 列表容器 */
    .list-content-wrapper {
        padding: 0 0 3rem;
    }
    
    /* 列表网格 */
    .list-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    /* 列表项样式 */
    .list-item {
        background: var(--list-white);
        border: 1px solid var(--list-border);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--list-shadow);
    }
    
    .list-item:hover {
        border-color: var(--list-blue);
        box-shadow: var(--list-shadow-hover);
    }
    
    /* 列表图片容器 */
    .list-img-container {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .list-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* 列表内容 */
    .list-item-content {
        padding: 1.5rem;
    }
    
    .list-item-title {
        font-family: 'Manrope', sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--list-dark);
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .list-item-title a {
        color: inherit;
        text-decoration: none;
    }
    
    .list-item-title a:hover {
        color: var(--list-blue);
    }
    
    .list-item-excerpt {
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        color: #718096;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .list-item-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0.8rem;
        border-top: 1px solid var(--list-border);
    }
    
    .list-item-date {
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        color: #a0aec0;
    }
    
    .list-item-category {
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        color: var(--list-blue);
        background: rgba(67, 97, 238, 0.1);
        padding: 0.2rem 0.6rem;
        border-radius: 10px;
        text-decoration: none;
    }
    
    /* 分页样式 */
    .list-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3rem;
        gap: 0.5rem;
    }
    
    .list-pagination a,
    .list-pagination span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        border: 1px solid var(--list-border);
        border-radius: 8px;
        background: var(--list-white);
        color: var(--list-dark);
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .list-pagination a:hover {
        border-color: var(--list-blue);
        background: rgba(67, 97, 238, 0.1);
    }
    
    .list-pagination .thisclass,
    .list-pagination .pagenow {
        background: var(--list-gradient);
        color: white;
        border-color: transparent;
    }
    
    .list-pagination .pageinfo {
        color: #718096;
        border: none;
        background: transparent;
    }
    
    /* 移动端响应式 */
    @media (max-width: 768px) {
        .list-container {
            padding: 0 1.5rem;
        }
        
        .list-banner {
            height: 220px;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }
        
        .list-banner-title {
            font-size: 1.5rem;
        }
        
        .list-banner-text {
            font-size: 0.9rem;
        }
        
        .list-banner-nav {
            bottom: 1rem;
        }
        
        .list-display {
            padding: 1.2rem;
            margin-bottom: 1.5rem;
        }
        
        .list-display h2 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }
        
        .list-display h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .list-display p {
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .list-two-columns {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }
        
        .list-column {
            padding: 1rem;
        }
        
        .list-column li {
            font-size: 0.85rem;
            line-height: 1.4;
        }
        
        .list-display .display-image {
            max-width: 640px;
        }
        
        .list-header {
            padding: 1rem 0 1.5rem;
        }
        
        .list-category-title {
            font-size: 1.8rem;
        }
        
        .list-category-desc {
            font-size: 1rem;
        }
        
        .list-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .list-item-content {
            padding: 1.2rem;
        }
        
        .list-pagination {
            flex-wrap: wrap;
        }
    }
    
    /* 平板端响应式 */
    @media (min-width: 769px) and (max-width: 1024px) {
        .list-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }