<style>
        /* 基础样式重置 - 只针对新闻页面 */
        #news-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, sans-serif;
        }

        #news-page {
            --primary: #1a3a6c;      /* 深蓝 - 企业主色 */
            --secondary: #2a5680;    /* 中蓝 - 辅助色 */
            --accent: #42a5f5;       /* 亮蓝 - 强调色 */
            --light: #e6f0ff;        /* 浅蓝 - 背景色 */
            --dark: #0a1e37;         /* 深蓝 - 文字色 */
            --text: #333;            /* 正文文字 */
            --text-light: #666;      /* 辅助文字 */
            --white: #ffffff;        /* 白色 */
            --shadow: rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border: 1px solid #d0e0f0;
            /*background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);*/
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            padding: 0;
            margin: 0;
        }

        #news-page .news-container {
            max-width: 1800px;
            margin: 100px auto;
            padding: 20px 40px;
            width: 100%;
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        /* 主内容区域 */
        #news-page .news-main-content {
            flex: 1;
        }

        /* 侧边栏区域 */
        #news-page .news-sidebar {
            flex: 0 0 350px;
            padding-top: 200px;
        }

        /* 面包屑导航 */
        #news-page .news-breadcrumb {
            padding: 15px 0;
            margin-bottom: 30px;
            font-size: 15px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            border-bottom: var(--border);
        }

        #news-page .news-breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
            white-space: nowrap;
        }

        #news-page .news-breadcrumb a:hover {
            color: var(--accent);
        }

        #news-page .news-breadcrumb span:last-child {
            color: var(--text-light);
            padding: 5px 0;
            white-space: nowrap;
        }

        #news-page .news-separator {
            margin: 0 10px;
            color: #cbd5e1;
        }

        /* 新闻内容区域 */
        #news-page .news-content {
            background: var(--white);
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
            border: var(--border);
        }

        #news-page .news-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: var(--border);
        }

        #news-page .news-title {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 25px;
            line-height: 1.4;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        #news-page .news-meta {
            display: flex;
            justify-content: center;
            gap: 40px;
            color: var(--text-light);
            font-size: 16px;
        }

        #news-page .news-date, 
        #news-page .news-author, 
        #news-page .news-category {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        #news-page .news-category {
            background: var(--light);
            padding: 8px 20px;
            border-radius: 30px;
            color: var(--accent);
            font-weight: 500;
        }

        /* 新闻图片 */
        #news-page .news-featured-image {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            text-align: center;
        }

        #news-page .news-featured-image img {
            max-width: 100%;
            height: auto;
            display: inline-block;
            transition: var(--transition);
        }

        #news-page .news-featured-image:hover img {
            transform: scale(1.03);
        }

        #news-page .news-image-caption {
            text-align: center;
            color: var(--text-light);
            font-size: 14px;
            margin-top: 15px;
            font-style: italic;
        }

        /* 新闻正文 */
        #news-page .news-body {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text);
            max-width: 1000px;
            margin: 0 auto;
        }

        #news-page .news-body p {
            margin-bottom: 25px;
            font-size: 18px;
        }

        #news-page .news-body h2 {
            font-size: 32px;
            color: var(--primary);
            margin: 50px 0 25px;
            padding-bottom: 15px;
            border-bottom: var(--border);
        }

        #news极 .news-body h3 {
            font-size: 26px;
            color: var(--secondary);
            margin: 40px 0 20px;
        }

        #news-page .news-body blockquote {
            background: var(--light);
            border-left: 4px solid var(--accent);
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }

        #news-page .news-body ul, 
        #news-page .news-body ol {
            margin: 25px 0;
            padding-left: 30px;
        }

        #news-page .news-body li {
            margin-bottom: 15px;
        }

        #news-page .news-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        #news-page .news-body .image-container {
            margin: 40px 0;
            text-align: center;
        }

        #news-page .news-body .image-container img {
            max-width: 80%;
            height: auto;
        }

        /* 上一篇/下一篇导航 */
        #news-page .news-navigation {
            display: flex;
            justify-content: space-between;
            margin: 60px 0;
            gap: 30px;
        }

        #news-page .news-nav-btn {
            flex: 1;
            background: var(--white);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            border: var(--border);
            transition: var(--transition);
            text-decoration: none;
            color: var(--text);
        }

        #news-page .news-nav-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: var(--light);
        }

        #news-page .news-nav-btn.prev {
            text-align: left;
        }

        #news-page .news-nav-btn.next {
            text-align: right;
        }

        #news-page .news-nav-label {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        #news-page .news-nav-btn.prev .news-nav-label {
            justify-content: flex-start;
        }

        #news-page .news-nav-btn.next .news-nav-label {
            justify-content: flex-end;
        }

        #news-page .news-nav-title {
            font-size: 20px;
            color: var(--primary);
            font-weight: 600;
            line-height: 1.4;
        }

        /* 侧边栏样式 */
        #news-page .news-sidebar-section {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6极 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
            border: var(--border);
        }

        #news-page .news-sidebar-title {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: var(--border);
            position: relative;
        }

        #news-page .news-sidebar-title:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        /* 相关产品 */
        #news-page .news-related-products {
            margin-bottom: 25px;
        }

        #news-page .news-product-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: var(--border);
            align-items: center;
            transition: var(--transition);
        }

        #news-page .news-product-item:last-child {
            border-bottom: none;
        }

        #news-page .news-product-item:hover {
            background: rgba(230, 240, 255, 0.3);
            border-radius: 8px;
            padding: 20px;
            margin: 0 -10px;
        }

        #news-page .news-product-image {
            flex: 0 0 100px;
            height: 100px;
            border-radius: 8px;
            overflow: hidden;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #news-page .news-product-image img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        #news-page .news-product-content {
            flex: 1;
        }

        #news-page .news-product-title {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 8px;
            font-weight: 600;
        }

        #news-page .news-product-title a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        #news-page .news-product-title a:hover {
            color: var(--accent);
        }

        #news-page .news-product-specs {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        #news-page .news-product-link {
            display: inline-block;
            color: var(--accent);
            font-weight: 500;
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

        #news-page .news-product-link:hover {
            text-decoration: underline;
        }

        /* 相关资讯 */
        #news-page .news-related-news-item {
            padding: 15px 0;
            border-bottom: var(--border);
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        #news-page .news-related-news-item:last-child {
            border-bottom: none;
        }

        #news-page .news-related-news-date {
            flex: 0 0 60px;
            text-align: center;
            background: var(--light);
            border-radius: 6px;
            padding: 8px;
            font-size: 14px;
            color: var(--accent);
            font-weight: 500;
        }

        #news-page .news-related-news-content {
            flex: 1;
        }

        #news-page .news-related-news-title {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 5px;
            line-height: 1.5;
        }

        #news-page .news-related-news-title a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        #news-page .news-related-news-title a:hover {
            color: var(--accent);
        }

        #news-page .news-related-news-category {
            display: inline-block;
            background: var(--light);
            color: var(--accent);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }

        /* 响应式设计 */
        @media (max-width: 1600px) {
            #news-page .news-container {
                padding: 20px 30px;
            }
        }

        @media (max-width: 1200px) {
            #news-page .news-container {
                flex-direction: column;
            }
            
            #news-page .news-sidebar {
                flex: 1;
                width: 100%;
                padding-top: 0;
            }
            
            #news-page .news-content {
                padding: 40px;
            }
            
            #news-page .news-title {
                font-size: 36px;
            }
            
            #news-page .news-body {
                font-size: 17px;
            }
            
            #news-page .news-body h2 {
                font-size: 28px;
            }
            
            #news-page .news-body h3 {
                font-size: 24px;
            }
        }

        @media (max-width: 992px) {
            #news-page .news-container {
                padding: 20px;
            }
            
            #news-page .news-content {
                padding: 30px;
            }
            
            #news-page .news-title {
                font-size: 32px;
            }
            
            #news-page .news-meta {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            #news-page .news-navigation {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            #news-page .news-container {
                padding: 15px;
            }
            
            #news-page .news-breadcrumb {
                font-size: 14px;
                padding: 10px 0;
                border-bottom: none;
            }
            
            #news-page .news-separator {
                margin: 0 8px;
            }
            
            #news-page .news-header {
                padding-bottom: 20px;
                margin-bottom: 30px;
            }
            
            #news-page .news-title {
                font-size: 28px;
            }
            
            #news-page .news-meta {
                font-size: 15px;
                gap: 15px;
            }
            
            #news-page .news-category {
                padding: 6px 15px;
            }
            
            #news-page .news-featured-image {
                margin: 30px 0;
            }
            
            #news-page .news-body {
                font-size: 16px;
            }
            
            #news-page .news-body h2 {
                font-size: 24px;
                margin: 40px 0 20px;
            }
            
            #news-page .news-body h3 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            
            #news-page .news-sidebar-title {
                font-size: 22px;
            }
        }

        @media (max-width: 576px) {
            #news-page .news-title {
                font-size: 24px;
            }
            
            #news-page .news-meta {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            #news-page .news-body {
                font-size: 15px;
            }
            
            #news-page .news-body h2 {
                font-size: 22px;
            }
            
            #news-page .news-body h3 {
                font-size: 20px;
            }
            
            #news-page .news-body img {
                max-width: 100%;
            }
            
            #news-page .news-sidebar-section {
                padding: 20px;
            }
        }
    </style>