        /* 基础样式 */
            /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
   /* 页面标题区域 */
        .page-header {
            background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), 
                        url('../chanpin_files/m_06.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .page-header h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            background-color: #f0f0f0;
            padding: 15px 0;
        }
        
        .breadcrumb ul {
            display: flex;
        }
        
        .breadcrumb li {
            margin-right: 10px;
            font-size: 14px;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #999;
        }
        
        .breadcrumb li:last-child {
            color: #0066cc;
        }
        
        /* 主要内容区域 */
        .main-content {
            display: flex;
            padding: 40px 0;
            gap: 30px;
        }
        
        /* 左侧新闻详情 */
        .news-detail {
            flex: 1;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .news-header {
            padding: 25px 30px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .news-header h3 {
            font-size: 24px;
            color: #003366;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .news-meta {
            display: flex;
            gap: 20px;
            font-size: 14px;
            color: #666;
        }
        
        .news-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .news-body {
            padding: 30px;
        }
        
        .news-image {
            margin-bottom: 25px;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .news-content {
            line-height: 1.8;
            color: #444;
        }
        
        .news-content p {
            margin-bottom: 20px;
        }
        
        .news-content h4 {
            font-size: 18px;
            color: #003366;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .news-content blockquote {
            background-color: #f5f7fa;
            border-left: 4px solid #0066cc;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            color: #555;
        }
        
        .news-content ul, .news-content ol {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .news-content li {
            margin-bottom: 8px;
        }
        
        .news-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }
        
        .tag {
            background-color: #e6f0ff;
            color: #0066cc;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            transition: background-color 0.3s;
        }
        
        .tag:hover {
            background-color: #d1e3ff;
        }
        
        .news-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }
        
        .nav-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #0066cc;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-btn:hover {
            color: #003366;
        }
        
        /* 右侧侧边栏 */
        .sidebar {
            flex: 0 0 300px;
        }
        
        .sidebar-widget {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-bottom: 25px;
        }
        
        .widget-header {
            background-color: #003366;
            color: white;
            padding: 15px 20px;
            font-size: 16px;
            font-weight: 600;
        }
        
        .widget-body {
            padding: 20px;
        }
        
        /* 新闻分类 */
        .category-list li {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .category-list li:last-child {
            border-bottom: none;
        }
        
        .category-list a {
            display: block;
            padding: 12px 0;
            color: #555;
            transition: color 0.3s;
        }
        
        .category-list a:hover {
            color: #0066cc;
        }
        
        .category-list a.active {
            color: #0066cc;
            font-weight: 500;
        }
        
        /* 热门新闻 */
        .hot-news-list li {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .hot-news-list li:last-child {
            border-bottom: none;
        }
        
        .hot-news-img {
            flex: 0 0 80px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .hot-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hot-news-content {
            flex: 1;
        }
        
        .hot-news-content h4 {
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 5px;
            color: #333;
        }
        
        .hot-news-content .date {
            font-size: 12px;
            color: #999;
        }
        
        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        /* 相关新闻 */
        .related-news {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h3 {
            font-size: 28px;
            color: #003366;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h3::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #0066cc;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .news-card {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .news-img {
            height: 180px;
            overflow: hidden;
        }
        
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        
        .news-card-content {
            padding: 20px;
        }
        
        .news-card-content h4 {
            font-size: 16px;
            line-height: 1.4;
            margin-bottom: 10px;
            color: #003366;
        }
        
        .news-card-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .news-card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
        }
        
		
		
		
        /* 页脚 */
        footer {
            background-color: #333;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            padding: 0 15px;
        }
        
        .footer-section h3 {
            margin-bottom: 15px;
            color: #0066a1;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #444;
        }
        
        /* 顶部信息栏 */
        .top-bar {
            background-color: #004a8f;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-links a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.3s;
        }

        .top-links a:hover {
            color: #ffc107;
        }

        /* 导航栏样式 */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 600;
            color: #004a8f;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: #004a8f;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            position: relative;
            margin: 0 15px;
        }

        .nav-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 10px 0;
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #004a8f;
        }

        .nav-link i {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s;
        }

        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }

        /* 下拉菜单样式 */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #004a8f;
            padding-left: 25px;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        /* 汉堡菜单按钮 */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #004a8f;
        }
    
  
           
        /* 响应式设计 */
        @media (max-width: 992px) {
		
		    .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                background-color: white;
                width: 280px;
                height: 100vh;
                flex-direction: column;
                padding: 80px 20px 20px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 0;
                width: 100%;
            }

            .nav-link {
                padding: 15px 0;
                border-bottom: 1px solid #f0f0f0;
                width: 100%;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                background-color: #f8f9fa;
                border-radius: 0;
                margin-left: 15px;
            }

            .nav-item.active .dropdown-menu {
                display: block;
            }

            .hamburger {
                display: block;
                z-index: 1001;
            }

            .dropdown-item {
                padding: 10px 15px;
            }
			
            .main-content {
                flex-direction: column;
            }
            
            .sidebar {
                flex: none;
                width: 100%;
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 20px;
            }
			   .page-header {
                padding: 60px 0;
            }
            
            .page-header h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
			 
                     
            
            .page-header p {
                font-size: 16px;
            }
            
            .section-title h3 {
                font-size: 24px;
            }
               .page-header {
                padding: 40px 0;
            }
            
            .page-header h2 {
                font-size: 28px;
            }
            
            .news-header h3 {
                font-size: 20px;
            }
            
            .news-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .news-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .news-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
		
		   .top-bar-content {
                flex-direction: column;
                gap: 10px;
            }
			
  .page-header h2 {
                font-size: 22px;
            }
            .top-links a {
                margin: 0 10px;
            }
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 5px 0;
            }
			 .news-header, .news-body {
                padding: 20px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
			       .logo h1 {
                font-size: 18px;
            }
        }