        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
            padding-bottom: 70px; /* 为底部悬浮栏留出空间 */
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .top-info-bar {
            background-color: #0a2463;
            color: white;
            padding: 8px 0;
            font-size: 13px;
        }
        
        .top-info-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-info-content p {
            margin: 0;
        }
        
        .top-info-contact {
            display: flex;
            gap: 15px;
        }
        
        .top-info-contact a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .top-info-contact i {
            margin-right: 5px;
            font-size: 12px;
        }
        
        /* 头部样式 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 24px;
            color: #0a2463;
            margin-left: 10px;
        }
        
.logo-img {
    width: 250px;
    height: 72px; 
    background-image:url(../images/logo.jpg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 75px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: #0a2463;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #0a2463;
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            background-color: #f8f9fa;
            margin-bottom: 30px;
        }
        
        .breadcrumb a {
            color: #0a2463;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: #666;
        }
        
        /* 新闻详情区域 */
        .news-detail-container {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .news-content {
            flex: 2;
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .news-header {
            margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .news-title {
            font-size: 28px;
            color: #0a2463;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 14px;
            flex-wrap: wrap;
        }
        
        .news-meta span {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .news-meta i {
            margin-right: 5px;
        }
        
        .news-body {
            font-size: 16px;
            line-height: 1.8;
        }
        
        .news-body p {
            margin-bottom: 20px;
        }
        
        .news-image {
            width: 100%;
            margin: 25px 0;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .news-footer {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }
        
        .news-tags {
            display: flex;
            align-items: center;
        }
        
        .news-tags span {
            margin-right: 10px;
            color: #666;
        }
        
        .tag {
            display: inline-block;
            padding: 4px 10px;
            background: #f1f5fd;
            color: #0a2463;
            border-radius: 3px;
            font-size: 12px;
            margin-right: 8px;
        }
        
        .news-share {
            display: flex;
            align-items: center;
        }
        
        .news-share span {
            margin-right: 10px;
            color: #666;
        }
        
        .share-buttons a {
            display: inline-block;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f1f5fd;
            color: #0a2463;
            text-align: center;
            line-height: 32px;
            margin-left: 8px;
            transition: all 0.3s;
        }
        
        .share-buttons a:hover {
            background: #0a2463;
            color: white;
        }
        
        /* 侧边栏 */
        .sidebar {
            flex: 1;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 20px;
            color: #0a2463;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #fb8500;
            position: relative;
        }
        
        .widget-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: #0a2463;
            bottom: -2px;
            left: 0;
        }
        
        /* 服务栏目样式 */
        .service-list {
            list-style: none;
        }
        
        .service-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            transition: all 0.3s;
        }
        
        .service-item:last-child {
            border-bottom: none;
        }
        
        .service-item:hover {
            background-color: #f9f9f9;
            padding-left: 10px;
        }
        
        .service-icon {
            width: 40px;
            height: 40px;
            background: #0a2463;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .service-info h3 {
            font-size: 16px;
            margin-bottom: 5px;
            color: #0a2463;
        }
        
        .service-info p {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }
        
        /* 相关新闻 */
        .related-news {
            list-style: none;
        }
        
        .related-item {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .related-item:last-child {
            border-bottom: none;
        }
        
        .related-item a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            line-height: 1.4;
        }
        
        .related-item a:hover {
            color: #0a2463;
        }
        
        .related-date {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }
        
        /* 联系我们样式 */
        .contact-preview {
            padding: 60px 0;
            background-color: #fff;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
            gap: 30px;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 280px;
            padding: 25px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
        }
        
        .contact-item.wechat .contact-icon {
            background: #07c160;
        }
        
        .contact-item.phone .contact-icon {
            background: #0a2463;
        }
        
        .contact-item.email .contact-icon {
            background: #fb8500;
        }
        
        .contact-item h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #0a2463;
        }
        
        .contact-detail {
            font-size: 18px;
            color: #555;
            word-break: break-all;
            overflow-wrap: break-word;
            max-width: 100%;
        }
        
        .wechat-copy {
            display: inline-flex;
            align-items: center;
            background: #f1f5fd;
            padding: 8px 15px;
            border-radius: 5px;
            margin-top: 10px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .wechat-copy:hover {
            background: #e3ebfb;
        }
        
        .wechat-copy i {
            color: #07c160;
            margin-right: 8px;
        }
        
        /* 复制成功提示 */
        .copy-notification {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            z-index: 1000;
            display: none;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #1a1a1a;
            color: #fff;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fb8500;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #fb8500;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 14px;
        }
        
        /* 底部悬浮栏 - 移动端 */
        .float-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            display: none;
            padding: 10px 15px;
        }
        
        .float-buttons {
            display: flex;
            justify-content: space-around;
        }
        
        .float-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 15px;
            border-radius: 8px;
            background: #f8f9fa;
            border: none;
            color: #333;
            font-size: 12px;
            transition: all 0.3s;
            width: 45%;
        }
        
        .float-btn i {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        .float-btn.phone {
            background: #0a2463;
            color: white;
        }
        
        .float-btn.wechat {
            background: #07c160;
            color: white;
        }
        
        /* 微信二维码弹窗 */
        .wechat-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .wechat-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            max-width: 320px;
            width: 80%;
        }
        
        .modal-content h3 {
            margin-bottom: 20px;
            color: #333;
            font-size: 22px;
        }
        
        .qrcode-image {
            width: 200px;
            height: 200px;
            background: #f5f5f5;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .qrcode-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .modal-wechat-id {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            padding: 10px 15px;
            border-radius: 50px;
            margin: 15px 0;
            font-size: 16px;
        }
        
        .modal-wechat-id i {
            color: #07c160;
            margin-right: 8px;
            font-size: 18px;
        }
        
        .modal-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .modal-copy-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #07c160;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s;
        }
        
        .modal-copy-btn:hover {
            background: #06ae56;
        }
        
        .modal-copy-btn i {
            margin-right: 5px;
        }
        
        .close-modal {
            flex: 1;
            background: #0a2463;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .close-modal:hover {
            background: #08368a;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .news-detail-container {
                flex-direction: column;
            }
            
            .news-content, .sidebar {
                width: 100%;
            }
            
            nav ul li {
                margin-left: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px 10px;
            }
            
            .news-title {
                font-size: 24px;
            }
            
            .news-meta span {
                margin-right: 15px;
                margin-bottom: 5px;
            }
            
            .news-footer {
                flex-direction: column;
                gap: 15px;
            }
            
            .news-tags, .news-share {
                width: 100%;
            }
            
            /* 显示底部悬浮栏 */
            .float-bottom-bar {
                display: block;
            }
            
            body {
                padding-bottom: 70px;
            }
        }
        
        @media (max-width: 480px) {
            .news-title {
                font-size: 20px;
            }
            
            .news-body {
                font-size: 15px;
            }
            
            .contact-info {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-item {
                width: 100%;
                max-width: 320px;
            }
        }
