
        /* CSS Reset & Base Styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.8;
            color: #2d3748;
            background-color: #f4f6f8;
            padding: 40px 15px;
        }

        /* News Container Card */
        .news-article {
            max-width: 880px;
            margin: 0 auto;
            background: #ffffff;
            padding: 50px 60px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid #edf2f7;
        }

        /* Header Styles */
        .news-header {
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 25px;
            margin-bottom: 35px;
        }
        .news-category {
            display: inline-block;
            background-color: #ebf8ff;
            color: #1d4ed8;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 15px;
        }
        .news-title {
            font-size: 2rem;
            font-weight: 800;
            color: #1a202c;
            line-height: 1.35;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        .news-meta {
            font-size: 0.9rem;
            color: #718096;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .news-meta span strong {
            color: #4a5568;
        }

        /* Content Paragraphs & Highlights */
        .news-content p {
            margin-bottom: 24px;
            font-size: 1.05rem;
            color: #4a5568;
            text-align: justify;
        }
        
        /* 重点词高亮样式 */
        .news-content strong.highlight {
            color: #1d4ed8;
            background-color: #eff6ff;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .news-content strong {
            color: #1a202c;
        }

        /* Optimized Image Grids & Responsive Sizes */
        .img-grid {
            display: grid;
            gap: 16px;
            margin: 30px 0;
        }
        .img-grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        .img-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        .img-single {
            grid-template-columns: 1fr;
        }

        .img-card {
            overflow: hidden;
            border-radius: 8px;
            background-color: #f7fafc;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid #edf2f7;
        }
        .img-card img {
            width: 100%;
            height: 100%;
            min-height: 220px;
            max-height: 380px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        .img-card img:hover {
            transform: scale(1.03);
            filter: brightness(1.02);
        }

        /* Blockquote Styling */
        .news-blockquote {
            position: relative;
            border-left: 4px solid #1d4ed8;
            background-color: #f8fafc;
            padding: 24px 30px;
            margin: 35px 0;
            font-style: italic;
            font-size: 1.15rem;
            font-weight: 600;
            color: #1e293b;
            border-radius: 0 8px 8px 0;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
        }

        /* Footer */
        .news-footer {
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #e2e8f0;
            text-align: center;
            font-size: 0.88rem;
            color: #a0aec0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .news-article {
                padding: 30px 20px;
            }
            .news-title {
                font-size: 1.55rem;
            }
            .img-grid-2, .img-grid-3 {
                grid-template-columns: 1fr;
            }
            .img-card img {
                max-height: 260px;
                min-height: auto;
            }
        }
    