/* 新闻列表页样式 */
.news-section {
    padding: 60px 0;
    background: #f8fafc;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding-right: 25px;
    border-right: 2px solid #e8f0fe;
    margin-right: 25px;
}

.news-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: #1565c0;
    line-height: 1;
}

.news-date .month {
    font-size: 0.75rem;
    color: #666;
    margin-top: 4px;
}

.news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.category-policy {
    background: #e3f2fd;
    color: #1565c0;
}

.category-service {
    background: #e8f5e9;
    color: #2e7d32;
}

.category-tax {
    background: #fff3e0;
    color: #ef6c00;
}

.category-honor {
    background: #fce4ec;
    color: #c2185b;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.news-content h3 a:hover {
    color: #1565c0;
}

.news-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: #999;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    background: #fff;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.page-item:hover {
    background: #1565c0;
    color: #fff;
}

.page-item.active {
    background: #1565c0;
    color: #fff;
}

.page-item.prev,
.page-item.next {
    padding: 0 20px;
}

/* 响应式 */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-date {
        flex-direction: row;
        border-right: none;
        border-bottom: 2px solid #e8f0fe;
        padding-right: 0;
        padding-bottom: 15px;
        margin-right: 0;
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .news-date .day {
        font-size: 1.5rem;
    }
    
    .news-date .month {
        margin-top: 0;
    }
}

/* ===== E-E-A-T 权威信号区块 ===== */
.article-eeat {
    margin: 30px 0;
    border: 1px solid #d4a84b;
    border-radius: 10px;
    overflow: hidden;
    background: #fffdf5;
}

.eeat-header {
    background: linear-gradient(135deg, #1a3a5c, #2a5580);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.eeat-header i {
    margin-right: 6px;
    color: #d4a84b;
}

.eeat-body {
    padding: 16px 20px;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.8;
}

.eeat-item {
    margin-bottom: 6px;
}

.eeat-item:last-child {
    margin-bottom: 0;
}

.eeat-item strong {
    color: #1a3a5c;
}

.badge-tsc5, .badge-top10 {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-tsc5 {
    background: #1a3a5c;
    color: #d4a84b;
}

.badge-top10 {
    background: #d4a84b;
    color: #1a3a5c;
}

.eeat-item a {
    color: #2a5580;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.eeat-item a:hover {
    color: #d4a84b;
}

@media (max-width: 768px) {
    .eeat-body {
        padding: 12px 16px;
        font-size: 0.82rem;
    }
    .eeat-header {
        padding: 8px 16px;
        font-size: 0.88rem;
    }
}

/* ============ FAQ 文章专用样式 ============ */

/* 引言段落 */
.article-intro {
    font-size: 1.05rem;
    color: #4a6785;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border-left: 4px solid #1565c0;
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 28px;
    line-height: 1.8;
}

/* FAQ 列表容器 */
.article-content--faq {
    padding-bottom: 10px;
}

/* FAQ 单个条目 */
.article-faq-item {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.article-faq-item:hover {
    border-color: #c5d5e8;
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.08);
}

.article-faq-item.is-open {
    border-color: #1565c0;
    box-shadow: 0 4px 20px rgba(21, 101, 192, 0.12);
}

/* FAQ 问题行 */
.article-faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    user-select: none;
}

.article-faq-question:hover {
    background: #f5f9ff;
}

.article-faq-item.is-open .article-faq-question {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fa 100%);
    border-bottom: 1px solid #e8edf3;
}

/* FAQ 序号 */
.article-faq-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* FAQ 图标 */
.article-faq-question > i:first-of-type {
    color: #1565c0;
    font-size: 1rem;
    flex-shrink: 0;
}

/* FAQ 问题文字 */
.article-faq-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2a44;
    line-height: 1.5;
}

/* FAQ 展开箭头 */
.article-faq-arrow {
    color: #a0b4cc;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.article-faq-item.is-open .article-faq-arrow {
    transform: rotate(180deg);
    color: #1565c0;
}

/* FAQ 答案 */
.article-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background: #fafcff;
}

.article-faq-item.is-open .article-faq-answer {
    max-height: 500px;
    padding: 20px 24px 20px 68px;
}

.article-faq-answer p {
    color: #4a5568;
    line-height: 1.85;
    font-size: 0.95rem;
    margin: 0;
}

.article-faq-answer strong {
    color: #1a3a5c;
    font-weight: 700;
}

/* FAQ 步骤列表 */
.article-steps {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    background: #e3f0fc;
    color: #1565c0;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
}

/* FAQ 优势列表 */
.article-advantages {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-advantages li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-advantages li i {
    color: #16a34a;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* 服务承诺高亮框 */
.article-promise-box {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 50%, #2196f3 100%);
    border-radius: 14px;
    padding: 0;
    margin: 32px 0 28px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(21, 101, 192, 0.2);
}

.article-promise-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.article-promise-header i {
    font-size: 1.2rem;
}

.article-promise-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    padding: 16px 22px 20px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.5;
}

.promise-item i {
    color: #69f0ae;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* CTA 行动号召 */
.article-cta-box {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5580 100%);
    border-radius: 14px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 24px 0 10px;
    box-shadow: 0 6px 24px rgba(26, 58, 92, 0.15);
}

.article-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
}

.article-cta-icon i {
    font-size: 1.4rem;
    color: #69f0ae;
}

.article-cta-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 4px;
    font-weight: 700;
}

.article-cta-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

.article-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.article-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.article-cta-btn--primary {
    background: #fff;
    color: #1a3a5c;
}

.article-cta-btn--primary:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-cta-btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.article-cta-btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* FAQ 文章响应式 */
@media (max-width: 768px) {
    .article-intro {
        font-size: 0.95rem;
        padding: 14px 16px;
    }
    
    .article-faq-question {
        padding: 14px 14px;
        gap: 10px;
    }
    
    .article-faq-num {
        min-width: 30px;
        height: 30px;
        font-size: 0.72rem;
    }
    
    .article-faq-text {
        font-size: 0.9rem;
    }
    
    .article-faq-item.is-open .article-faq-answer {
        padding: 16px 16px 16px 16px;
    }
    
    .article-promise-items {
        grid-template-columns: 1fr;
    }
    
    .article-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
    }
    
    .article-cta-content {
        flex-direction: column;
    }
    
    .article-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .article-cta-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-faq-question > i:first-of-type {
        display: none;
    }
    
    .article-cta-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ============ 资讯类文章通用样式 ============ */

/* 文章引言 */
.article-content > p:first-of-type {
    font-size: 1.05rem;
    color: #4a6785;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border-left: 4px solid #1565c0;
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 28px;
    line-height: 1.85;
}

/* 文章小标题 h3 */
.article-content h3 {
    font-size: 1.2rem;
    color: #1a3a5c;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid #1565c0;
    line-height: 1.5;
    font-weight: 700;
}

/* 文章小标题 h4 */
.article-content h4 {
    font-size: 1.05rem;
    color: #2a5580;
    margin: 24px 0 12px;
    font-weight: 600;
}

/* 段落间距 */
.article-content p {
    color: #4a5568;
    line-height: 1.9;
    font-size: 0.98rem;
    margin: 0 0 16px;
}

.article-content p:last-child {
    margin-bottom: 0;
}

/* 段落中的 strong */
.article-content p strong {
    color: #1a3a5c;
    font-weight: 700;
}

/* 警告框/提示框 */
.article-content .warning-box,
.article-content .tip-box,
.article-content .info-box {
    padding: 16px 20px;
    border-radius: 10px;
    margin: 24px 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.warning-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 1px solid #fed7d7;
    border-left: 4px solid #e53e3e;
    color: #742a2a;
}

.warning-box strong {
    color: #c53030;
}

.tip-box {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
    border: 1px solid #c6f6d5;
    border-left: 4px solid #38a169;
    color: #22543d;
}

.info-box {
    background: linear-gradient(135deg, #ebf8ff 0%, #e0f2fe 100%);
    border: 1px solid #bee3f8;
    border-left: 4px solid #3182ce;
    color: #2a4365;
}

/* 风险卡片/内容卡片 */
.article-content .risk-card,
.article-content .content-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 20px 22px;
    margin: 16px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.article-content .risk-card:hover,
.article-content .content-card:hover {
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.08);
}

.risk-card h4,
.content-card h4 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: #c53030;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-card h4 {
    color: #1565c0;
}

.risk-card h4 i {
    color: #e53e3e;
}

.content-card h4 i {
    color: #3182ce;
}

/* 卡片内的列表 */
.risk-card ul,
.content-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.risk-card ul li,
.content-card ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f4f8;
}

.risk-card ul li:last-child,
.content-card ul li:last-child {
    border-bottom: none;
}

.risk-card ul li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #e53e3e;
}

.content-card ul li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: #3182ce;
    font-weight: 700;
}

/* 高亮数字/统计 */
.highlight-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 10px;
    margin: 0 4px;
    vertical-align: middle;
}

/* 步骤列表 */
.article-steps {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    counter-reset: step;
}

.article-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f4f8;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-steps li:last-child {
    border-bottom: none;
}

.article-steps li .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 优势/特点列表 */
.article-advantages {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.article-advantages li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #f8fbff;
    border: 1px solid #e3ecf5;
    border-radius: 10px;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.article-advantages li:hover {
    background: #eef5ff;
    border-color: #c5d5e8;
}

.article-advantages li i {
    color: #16a34a;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* 分隔线 */
.article-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e3ecf5 50%, transparent 100%);
    margin: 32px 0;
}

/* CTA 行动号召（资讯类也用） */
.article-cta-box,
.cta-box {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5580 100%);
    border-radius: 14px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 32px 0 10px;
    box-shadow: 0 6px 24px rgba(26, 58, 92, 0.15);
}

/* CTA 内文字颜色 */
.cta-box h4,
.cta-box p {
    color: #fff;
}

.cta-box h4 {
    font-size: 1.1rem;
    margin: 0 0 4px;
    font-weight: 700;
}

.cta-box p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.article-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
}

.article-cta-icon i {
    font-size: 1.4rem;
    color: #69f0ae;
}

.article-cta-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 4px;
    font-weight: 700;
}

.article-cta-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

.article-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.article-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.article-cta-btn--primary {
    background: #fff;
    color: #1a3a5c;
}

.article-cta-btn--primary:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-cta-btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.article-cta-btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* 资讯类文章响应式 */
@media (max-width: 768px) {
    .article-content > p:first-of-type {
        font-size: 0.95rem;
        padding: 14px 16px;
    }
    
    .article-content h3 {
        font-size: 1.1rem;
        margin: 24px 0 12px;
    }
    
    .article-advantages {
        grid-template-columns: 1fr;
    }
    
    .article-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
    }
    
    .article-cta-content {
        flex-direction: column;
    }
    
    .article-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .article-cta-btn {
        justify-content: center;
    }
}


/* Card view count */
.news-card__views {
    color: var(--text-muted);
    font-size: 0.8rem;
}
.news-card__views i {
    margin-right: 3px;
    font-size: 0.75rem;
}
.news-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
