 /* 重置a标签所有状态的下划线 */
    a:link,   
	 /* 未访问的链接 */
    /* a:visited, */
	 /* 已访问的链接 */
    a:hover,   
	/* 鼠标悬浮时 */
    a:active  
	 /* 鼠标点击时 */
    {
      text-decoration: none;
    }   
   
   /* 复用原有基础样式 - 保持视觉统一 */
        .icon {
            display: inline-block;
            font-style: normal;
            font-weight: normal;
            speak: never;
            text-align: center;
            text-decoration: inherit;
            text-transform: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .icon-laptop::before { content: "\1F4BB"; }
        .icon-times::before { content: "\2715"; }
        .icon-chevron-left::before { content: "\2039"; }
        .icon-chevron-right::before { content: "\203A"; }
        .icon-users::before { content: "\1F465"; }
        .icon-building::before { content: "\1F3E2"; }
        .icon-clock::before { content: "\23F0"; }
        .icon-phone-alt::before { content: "\1F4DE"; }
        .icon-envelope::before { content: "\2709"; }
        .icon-map-marker-alt::before { content: "\1F4CD"; }
        /* .icon-weixin::before { content: "\1F4AC"; } */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }

        :root {
            --primary: #1a3a5f;
            --secondary: #2c5282;
            --accent: #38b2ac;
            --light: #f0f7ff;
            --dark: #0a192f;
            --text: #333;
            --text-light: #f8fafc;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            background-color: #f9fbfd;
            color: var(--text);
            line-height: 1.8; /* 详情页增大行高提升阅读体验 */
        }
		
		
		/* 分割线样式 */
		.section-divider {
		    height: 1px;
		    /* background: linear-gradient(to right, transparent, var(--primary-color), transparent); */
			background: #2C5282;
		    margin: 20px 0;
		    border: none;
		}

        /* 导航栏样式复用 */
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        .container {
            width: 90%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 15px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            color: var(--text-light);
            font-weight: 700;
            font-size: 1.8rem;
            text-decoration: none;
        }

        .logo .icon {
            margin-right: 10px;
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--transition);
        }

        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger .bar {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 4px 0;
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: var(--dark);
            padding: 80px 30px 30px;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            z-index: 1000;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu li {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .mobile-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            transition: var(--transition);
        }

        .mobile-menu a:hover {
            color: var(--accent);
            padding-left: 10px;
        }

        .close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-btn:hover {
            color: var(--accent);
            transform: rotate(90deg);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay.active {
            display: block;
            opacity: 1;
        }

        /* 新闻详情页专属样式 */
        .news-detail {
            padding: 60px 0;
        }

        /* 面包屑导航 */
        .breadcrumb {
            margin-bottom: 30px;
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 0.95rem;
        }

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

        .breadcrumb span {
            margin: 0 8px;
            color: #94a3b8;
        }

        /* 新闻详情主体 */
        .detail-wrapper {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
        }

        .detail-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .detail-header {
            margin-bottom: 30px;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 20px;
        }

        .detail-title {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .detail-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: #64748b;
            font-size: 0.95rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
        }

        .meta-item .icon {
            margin-right: 6px;
            color: var(--accent);
        }

        .detail-body {
            font-size: 1.05rem;
            color: #262626;
        }

        /* 修复图片显示问题：移除初始opacity:0，保留加载动画 */
        .detail-body img {
            max-width: 100%;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            /* 确保图片默认显示 */
            opacity: 1 !important;
            transition: opacity 0.5s ease;
            /* 防止图片被挤压 */
            object-fit: cover;
            /* 兜底背景色，图片加载前显示 */
            background-color: #f5f5f5;
        }

        .detail-body h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 30px 0 15px;
        }

        .detail-body p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .detail-body ul, .detail-body ol {
            margin: 15px 0 25px 25px;
        }

        .detail-body li {
            margin-bottom: 10px;
        }

        /* 新闻标签 */
        .detail-tags {
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
        }

        .detail-tags h4 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-item {
            background: var(--light);
            color: var(--secondary);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .tag-item:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-2px);
        }

        /* 上一篇下一篇 */
        .news-nav {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #f1f5f9;
        }

        .news-nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
            max-width: 45%;
        }

        .news-nav-item:hover {
            color: var(--accent);
        }

        /* 侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .widget-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }
		
		.sidebar-widget a {
			color: white;
		}

        /* 热门新闻 */
        .hot-news-list {
            list-style: none;
        }

        .hot-news-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e2e8f0;
        }

        .hot-news-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .hot-news-item a {
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hot-news-item a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .hot-news-date {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-top: 5px;
        }

        /* 联系方式侧边栏 */
        .contact-widget {
            /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
			background:     -webkit-linear-gradient(top,#505050,#212529);  /*蓝色渐变*/
            color: white;
            text-align: center;
        }

        .contact-widget .widget-title {
            color: white;
            border-bottom-color: white;
        }

        .contact-widget .contact-item {
            margin: 15px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.05rem;
        }

        .contact-widget .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: var(--transition);
        }

        .contact-widget .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(56, 178, 172, 0.4);
            background-color: #2d9c96;
        }

        /* 页脚样式复用 */
        footer {
            /* background: var(--dark); */
			background:     -webkit-linear-gradient(top,#505050,#212529);  /*蓝色渐变*/
            color: var(--text-light);
            padding: 70px 0 30px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-links a .icon {
            margin-right: 8px;
            font-size: 0.8rem;
        }

        .qrcode-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .qrcode {
            width: 150px;
            height: 150px;
            background: #f0f7ff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .qrcode .icon {
            font-size: 5rem;
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #94a3b8;
        }

        /* 响应式适配 */
        @media (max-width: 1200px) {
            .detail-wrapper {
                grid-template-columns: 1fr;
            }
			
			.detail-body img {
				
			   /* 清除原有宽高：重置为初始值 */
        width: initial;    /* 清除自定义宽度，恢复默认 */
        height: initial;   /* 清除自定义高度，恢复默认 */
        /* 重新定义小屏幕宽度 */
        width: 100%;       /* 占满父容器宽度 */
        max-width: 400px;  /* 限制最大宽度（可选，避免太宽） */
        height: auto;      /* 高度自动适应，保持比例 */
				
				}
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .detail-title {
                font-size: 1.8rem;
            }
            .detail-content {
                padding: 25px;
            }
            .news-nav {
                flex-direction: column;
                gap: 15px;
            }
            .news-nav-item {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .detail-title {
                font-size: 1.5rem;
            }
            .detail-meta {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            .detail-content {
                padding: 20px 15px;
            }
        }