
        /* 核心基础样式 */
        .news-detail-apas {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333333;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }

        /* 标题与头部 */
        .news-header h1 {
            color: #004098; /* 工业科技蓝 */
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .news-meta {
            color: #666666;
            font-size: 0.95rem;
            border-left: 4px solid #004098;
            padding-left: 10px;
            margin-bottom: 30px;
            background: #f8f9fa;
            padding: 10px 15px;
        }

        /* 图像处理 */
        .news-image {
            margin: 30px 0;
            text-align: center;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .news-image img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        .news-image:hover img {
            transform: scale(1.02);
        }

        /* 内链样式 (SEO 优化) */
        .apas-internal-link {
            color: #0056b3;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted #0056b3;
            transition: all 0.2s ease;
        }
        .apas-internal-link:hover {
            color: #d32f2f; 
            border-bottom: 1px solid #d32f2f;
        }

        /* 产品网格布局 */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .product-card {
            background: #ffffff;
            border: 1px solid #e1e4e8;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
        .product-card:hover {
            box-shadow: 0 8px 16px rgba(0,64,152,0.1);
            transform: translateY(-3px);
            border-color: #004098;
        }
        .product-card h3 {
            color: #004098;
            font-size: 1.25rem;
            margin-top: 0;
            border-bottom: 2px solid #f0f2f5;
            padding-bottom: 10px;
        }

        /* 展会信息高亮框 */
        .exhibition-info {
            background-color: #e8f4fd;
            border-radius: 8px;
            padding: 25px;
            margin: 40px 0;
            border: 1px solid #b6dfff;
        }
        .exhibition-info h2 {
            color: #004098;
            margin-top: 0;
        }
        .exhibition-info ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        .exhibition-info li {
            margin-bottom: 12px;
            font-size: 1.05rem;
        }
        
        /* 章节标题 */
        section h2 {
            color: #222222;
            font-size: 1.7rem;
            border-left: 5px solid #004098;
            padding-left: 12px;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        /* 转化按钮 (CTA) */
        .cta-button {
            display: inline-block;
            background-color: #004098;
            color: #ffffff !important;
            padding: 12px 28px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            margin-top: 15px;
            transition: background-color 0.3s ease;
            border: none;
        }
        .cta-button:hover {
            background-color: #002d6b;
            color: #ffffff;
        }
