/* ============================================================
 * 悦互动官网 - 样式文件
 * 文件: css/pages/lists_article_news-2.css
 * 悦多网络版权所有 © YueDuo Network. All Rights Reserved.
 * ============================================================ */

/* lists_article_news-2.html 页面专属样式（自内联 <style> 抽离） */
/* ===== 解决方案页 - 华为云科技运营风 ===== */

/* --- Hero区域：紫色渐变大标题，与产品功能页一致 --- */
.solution-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4c1d95 100%);
}
.solution-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(99,102,241,0.25), transparent),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139,92,246,0.2), transparent);
    pointer-events: none;
}
.solution-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.solution-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.solution-hero h1 span {
    background: linear-gradient(90deg, #818cf8, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solution-hero p {
    font-size: 17px;
    color: rgba(199, 210, 254, 0.85);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* --- 文章列表区域：科技渐变背景 + 毛玻璃卡片 --- */
.solution-list {
    padding: 64px 0 100px;
    background: linear-gradient(135deg, #f0f7ff 0%, #f5f0ff 50%, #fff0f7 100%);
    position: relative;
    overflow: hidden;
}
.solution-list::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(37,99,235,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.solution-list::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 45%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(139,92,246,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.article-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* 文章卡片：毛玻璃 + 左侧渐变竖条 */
.article-item {
    display: flex;
    gap: 32px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 28px;
    box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    align-items: center;
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: articleFadeIn 0.6s ease forwards;
}
.article-item:nth-child(1) { animation-delay: 0.05s; }
.article-item:nth-child(2) { animation-delay: 0.10s; }
.article-item:nth-child(3) { animation-delay: 0.15s; }
.article-item:nth-child(4) { animation-delay: 0.20s; }
.article-item:nth-child(5) { animation-delay: 0.25s; }
.article-item:nth-child(6) { animation-delay: 0.30s; }
.article-item:nth-child(7) { animation-delay: 0.35s; }
.article-item:nth-child(8) { animation-delay: 0.40s; }
.article-item:nth-child(9) { animation-delay: 0.45s; }
@keyframes articleFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
.article-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary) 0%, #7C3AED 100%);
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    transition: width 0.3s ease;
}
.article-item:hover {
    box-shadow: 0 16px 48px -12px rgba(37,99,235,0.14);
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
}
.article-item:hover::before {
    width: 5px;
    box-shadow: 0 0 12px rgba(37,99,235,0.35);
}
.article-item:hover .article-thumb img {
    transform: scale(1.04);
}
.article-item:hover .article-title {
    color: var(--color-primary);
}
.article-item:hover .article-arrow {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    border-color: transparent;
    color: #fff;
    transform: translateX(3px);
}

.article-thumb {
    width: 280px;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 悦多网络版权所有 */
.article-tag {
    display: inline-flex;
    width: fit-content;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    border-radius: 100px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.2);
}
.article-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}
.article-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--color-text-muted);
}
.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.article-meta svg {
    width: 14px;
    height: 14px;
}
.article-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(37,99,235,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* --- 分页 --- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 56px 0 0;
    position: relative;
    z-index: 1;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}
.pagination a {
    color: var(--color-text-secondary);
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--color-border-light);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.pagination a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(255,255,255,0.9);
}
.pagination span.current {
    color: #fff;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    border: none;
    box-shadow: 0 2px 12px rgba(37,99,235,0.3);
}

/* ===== 手机端自适应 ===== */
@media (max-width: 768px) {
    .solution-hero { padding: 100px 0 48px; }
    .solution-hero h1 { font-size: 26px; margin-bottom: 10px; }
    .solution-hero p { font-size: 14px; padding: 0 20px; }
    .solution-list { padding: 32px 0 48px; }

    .article-item {
        flex-direction: row;
        gap: 12px;
        padding: 14px;
        border-radius: var(--radius-lg);
        align-items: center;
    }
    .article-item::before {
        width: 3px;
    }
    .article-thumb {
        width: 100px;
        height: 75px;
        border-radius: var(--radius-md);
    }
    .article-content {
        justify-content: center;
    }
    .article-tag {
        display: none;
    }
    .article-title {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 1.4;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .article-desc {
        display: none;
    }
    .article-meta {
        display: none;
    }
    .article-arrow {
        display: none;
    }

    .pagination {
        gap: 6px;
        padding-top: 28px;
    }
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
}

/* ===== 移动端字号协调补充（2026-08） ===== */
@media (max-width: 768px) {
    .solution-hero h1 {
        font-size: 24px;
    }

    .solution-hero p {
        font-size: 13px;
    }
}

/* 悦多网络版权所有 */

/* ============================================================
   动态资讯列表 · 手机端体验优化（2026-08-31）
   卡片信息层级完整化：缩略图加大 + 标签/日期回归 + 标题两行
   悦多网络版权所有 © YueDuo Network. All Rights Reserved.
   ============================================================ */
@media (max-width: 768px) {
    /* 列表节奏 */
    .solution-list { padding: 28px 0 44px; }
    .article-list { gap: 14px; }

    /* 卡片：紧凑但有呼吸感 */
    .article-item {
        gap: 13px;
        padding: 13px;
        border-radius: 14px;
        align-items: stretch;
    }
    .article-item::before { width: 3px; }

    /* 缩略图：加大到 116×86，比例接近 4:3 */
    .article-thumb {
        width: 116px;
        height: 86px;
        border-radius: 10px;
        align-self: center;
    }

    /* 内容区：标签 + 标题两行 + 日期 */
    .article-content {
        justify-content: center;
        gap: 0;
    }
    .article-tag {
        display: inline-flex;
        width: fit-content;
        padding: 2px 8px;
        font-size: 10px;
        letter-spacing: 0.04em;
        border-radius: 100px;
        margin-bottom: 6px;
        box-shadow: none;
    }
    .article-title {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 6px;
        letter-spacing: 0;
    }
    .article-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        color: var(--color-text-muted);
    }
    .article-meta svg {
        width: 11px;
        height: 11px;
    }
    /* 手机端只保留日期，隐藏阅读量 */
    .article-meta span:not(:first-child) {
        display: none;
    }

    /* 分页：更紧凑 */
    .pagination { padding-top: 24px; }
}

/* 悦多网络版权所有 */

/* ============================================================
   分页器 · 手机端优化（2026-08-31）
   毛玻璃容器 + 两端大号翻页键 + 当前页渐变高亮
   悦多网络版权所有 © YueDuo Network. All Rights Reserved.
   ============================================================ */
@media (max-width: 768px) {
    .pagination {
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: 16px;
        padding: 8px;
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
        gap: 6px;
    }
    .pagination a,
    .pagination span {
        min-width: 34px;
        height: 38px;
        padding: 0 8px;
        font-size: 13px;
        border-radius: 10px;
        border: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    /* 上一页 / 下一页：两端通栏大按钮 */
    .pagination > a:first-child,
    .pagination > a:last-child {
        flex: 1;
        background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-purple-light) 100%);
        color: var(--color-primary);
        letter-spacing: 0.06em;
    }
    .pagination > a:first-child:active,
    .pagination > a:last-child:active {
        transform: scale(0.97);
    }
    /* 省略号：无边框小灰点 */
    .pagination > span:not(.current) {
        min-width: 20px;
        padding: 0;
        color: var(--color-text-muted);
    }
    /* 当前页：渐变高亮 */
    .pagination span.current {
        color: #fff;
        background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
        box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
    }
}

/* 悦多网络版权所有 */

/* ===== 易优CMS 分页结构适配（pagelist 输出 <li><a> 结构） ===== */
/* 悦多网络版权所有 */
ul.pagination { list-style: none; margin: 0; padding-left: 0; }
.pagination li { display: inline-flex; }
.pagination li a { width: 100%; }
.pagination li.active a {
    color: #fff;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    border: none;
    box-shadow: 0 2px 12px rgba(37,99,235,0.3);
    pointer-events: none;
}
.pagination li.disabled,
.pagination li.disabled a {
    color: var(--color-text-light, #94A3B8);
    pointer-events: none;
    background: rgba(255,255,255,0.4);
}
@media (max-width: 768px) {
    .pagination li:first-child,
    .pagination li:last-child { flex: 1; }
    .pagination li:first-child a,
    .pagination li:last-child a {
        flex: 1;
        width: 100%;
        background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-purple-light) 100%);
        color: var(--color-primary);
        border-color: transparent;
    }
}
/* 悦多网络版权所有 */
