        /* 重用首页的全局样式 */
        * {
            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%;
        }
        
        /* 页面标题横幅 */
        .page-banner {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.8)), url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: white;
            margin-bottom: 60px;
        }
        
        .page-banner h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li a {
            color: white;
            text-decoration: none;
        }
        
        .breadcrumb li:after {
            content: ">";
            margin-left: 10px;
            color: #fb8500;
        }
        
        .breadcrumb li:last-child:after {
            content: "";
        }
        
        /* 关于我们内容区域 */
        .about-section {
            padding: 60px 0;
            background-color: #fff;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: #0a2463;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: #fb8500;
            bottom: 0;
            left: 25%;
        }
        
        .about-content {
            align-items: center;
            gap: 40px;
            margin-bottom: 60px;
        }
        
       
        
 
        
        .about-text h3 {
            font-size: 24px;
            color: #0a2463;
            margin-bottom: 20px;
        }
        
  
        
        /* 企业文化部分 */
        .culture-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
		
		.culture-cards a{   color: #333;
    text-decoration: none;
    transition: color 0.3s;}
        
        .culture-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .culture-card:hover {
            transform: translateY(-10px);
        }
        
        .culture-icon {
            width: 80px;
            height: 80px;
            background: #0a2463;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }
        
        .culture-card h3 {
            font-size: 20px;
            color: #0a2463;
            margin-bottom: 15px;
        }
        
        /* 发展历程时间线 */
        .timeline-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            width: 2px;
            height: 100%;
            background: #0a2463;
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 50%;
            padding: 20px 40px;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 70px;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 70px;
        }
        
        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .timeline-content:after {
            content: '';
            position: absolute;
            top: 30px;
            width: 20px;
            height: 20px;
            background: white;
            transform: rotate(45deg);
        }
        
        .timeline-item:nth-child(odd) .timeline-content:after {
            right: -10px;
        }
        
        .timeline-item:nth-child(even) .timeline-content:after {
            left: -10px;
        }
        
        .timeline-date {
            font-weight: bold;
            color: #0a2463;
            margin-bottom: 10px;
            display: block;
        }
        
        .timeline-dot {
            position: absolute;
            top: 30px;
            width: 20px;
            height: 20px;
            background: #fb8500;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd) .timeline-dot {
            right: -10px;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
        }
        
        /* 新闻中心样式 - 与首页一致 */
        .news {
            padding: 60px 0;
            background-color: #fff;
        }
        
        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .view-all {
            color: #0a2463;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .view-all i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .view-all:hover {
            color: #fb8500;
        }
        
        .view-all:hover i {
            transform: translateX(5px);
        }
        
        .news-two-columns {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .news-column {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
		
        .column-header {
            padding: 20px;
            background: #0a2463;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .column-header i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .column-header h3 {
            font-size: 20px;
            margin: 0;
        }
        
        .news-list {
            padding: 0;
        }
        
        .news-item {
            display: flex;
            padding: 20px;
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s;
        }
		.news-item a{
            color: #333;
    text-decoration: none;
    transition: color 0.3s;
        }
 
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item:hover {
            background-color: #f9f9f9;
        }
        
        .news-date {
            min-width: 60px;
            text-align: center;
            margin-right: 20px;
        }
        
        .news-day {
            display: block;
            font-size: 24px;
            font-weight: bold;
            color: #0a2463;
            line-height: 1;
        }
        
        .news-month {
            display: block;
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }
        
        .news-content {
            flex: 1;
        }
        
        .news-content h4 {
            font-size: 16px;
            margin-bottom: 8px;
            color: #0a2463;
            line-height: 1.4;
        }
        
        .news-content p {
            color: 666;
            margin-bottom: 10px;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .news-category {
            display: inline-block;
            padding: 3px 8px;
            background: #f1f5fd;
            color: #0a2463;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            color: #888;
            font-size: 12px;
        }
        
        .news-meta span {
            margin-right: 12px;
            display: flex;
            align-items: center;
        }
        
        .news-meta i {
            margin-right: 4px;
            font-size: 12px;
        }
        
        /* 联系我们样式 */
        .contact-preview {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .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-two-columns {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .contact-info {
                gap: 20px;
            }
            
            .contact-item {
                width: 100%;
                max-width: 280px;
            }
            
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
                left: 0 !important;
            }
            
            .timeline-item:nth-child(odd) .timeline-content:after {
                left: -10px;
                right: auto;
            }
            
            .timeline-item:nth-child(odd) .timeline-dot {
                left: 20px;
                right: auto;
            }
            
            .timeline-item:nth-child(even) .timeline-dot {
                left: 20px;
            }
            
            .timeline-item:nth-child(even) .timeline-content:after {
                left: -10px;
            }
        }
        
        @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;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                width: 100%;
            }
            
            .culture-cards {
                grid-template-columns: 1fr;
            }
            
            .news-item {
                flex-direction: column;
                padding: 15px;
            }
            
            .news-date {
                margin-right: 0;
                margin-bottom: 10px;
                display: flex;
                align-items: center;
            }
            
            .news-day {
                font-size: 20px;
                margin-right: 8px;
            }
            
            .news-month {
                margin-top: 0;
            }
            
            .news-meta {
                flex-wrap: wrap;
            }
            
            .news-meta span {
                margin-bottom: 5px;
            }
            
            .contact-info {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-item {
                width: 100%;
                max-width: 320px;
            }
            
            /* 显示底部悬浮栏 */
            .float-bottom-bar {
                display: block;
            }
            
            body {
                padding-bottom: 70px;
            }
        }
