﻿    /* 聚合页整体背景与顶部 */
    .tag-hero-section { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); margin-top: var(--header-height); padding: 80px 0 60px; text-align: center; border-bottom: 1px solid #f1f5f9; margin-bottom: 50px; }
    .tag-hero-section .tag-title { font-size: 38px; color: #E60012; font-weight: 800; margin-bottom: 15px; }
    .tag-hero-section .tag-desc { font-size: 16px; color: #64748b; max-width: 800px; margin: 0 auto; line-height: 1.8; }
    
    /* 模块标题增强 */
    .custom-sec-title { position: relative; padding-left: 20px; margin-bottom: 40px; }
    .custom-sec-title::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px; background: #E60012; border-radius: 4px; }
    .custom-sec-title .main-t { font-size: 26px; font-weight: 800; color: #1e293b; margin-bottom: 5px; }
    .custom-sec-title .sub-t { font-size: 13px; color: #64748b; text-transform: uppercase; letter-spacing: 2px; }

    /* 防拉伸响应式网格 (Grid) */
    .fw-grid-wrapper { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }

    /* 通用高级卡片样式 */
    .fw-item-card { 
        background: #fff; border: 1px solid #f1f5f9; border-radius: 12px; overflow: hidden; 
        text-decoration: none; transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; display: flex; flex-direction: column;
    }
    .fw-item-card:hover { border-color: #E60012; box-shadow: 0 15px 35px rgba(230, 0, 18, 0.08); transform: translateY(-6px); }
    
    /* 产品专用图框 */
    .fw-item-card .pic-box { width: 100%; aspect-ratio: 1/1; background: #fff; padding: 25px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; }
    .fw-item-card .pic-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
    
    /* 案例专用图框 */
    .fw-item-card .pic-case { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
    .fw-item-card .pic-case img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
    .fw-item-card:hover .pic-case img { transform: scale(1.08); }

    .fw-item-card .info-box { padding: 20px; background: #fdfdfd; flex-grow: 1; border-top: 1px solid #f8fafc; }
    .fw-item-card .title { font-size: 17px; font-weight: 800; color: #1e293b; margin-bottom: 10px; line-height: 1.4; transition: 0.3s; }
    .fw-item-card:hover .title { color: #E60012; }
    .fw-item-card .desc { font-size: 13px; color: #64748b; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

    /* 新闻列表优化 */
    .fw-news-list { border-top: 1px solid #f1f5f9; }
    .fw-news-row { display: flex; align-items: center; padding: 25px 15px; border-bottom: 1px solid #f1f5f9; text-decoration: none; transition: 0.3s; }
    .fw-news-row:hover { background: #f8fafc; padding-left: 25px; }
    .fw-news-row .date { width: 110px; flex-shrink: 0; color: #64748b; font-size: 14px; font-family: Arial; }
    .fw-news-row .content { flex-grow: 1; }
    .fw-news-row .title { font-size: 18px; font-weight: 600; color: #334155; margin-bottom: 4px; transition: 0.3s; }
    .fw-news-row:hover .title { color: #E60012; }
    .fw-news-row .abstract { font-size: 14px; color: #64748b; line-height: 1.5; }
    .fw-news-row .arrow { margin-left: 30px; color: #94a3b8; transition: 0.3s; }
    .fw-news-row:hover .arrow { color: #E60012; transform: translateX(5px); }

    @media (max-width: 768px) {
        .tag-hero-section { padding: 50px 0; }
        .tag-hero-section .tag-title { font-size: 28px; }
        .fw-news-row { flex-direction: column; align-items: flex-start; }
        .fw-news-row .date { margin-bottom: 10px; }
        .fw-news-row .arrow { display: none; }
    }


@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }
