    /* Footer 基础背景与间距优化 */
    .site-footer {
        background-color: #ffffff; /* 优化：改回纯白色干净背景 */
        color: #555555; /* 优化：文字颜色反转，确保白色背景上的阅读舒适度 */
        padding: 40px 0;
        font-size: 14px;
        line-height: 1.6;
        width: 100%;
        
        /* 优化：上方美化线条组合。包含1像素精致实线与细腻的下沉微阴影，完美隔离主体 */
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.03); 
    }
    
    /* 严格对齐 1200px 版心 */
    .footer-container {
        margin: 0 auto !important; /* 确保紧贴底部并居中 */
    }

    /* 内部核心内容容器，缩窄至 900px 并居中，使两侧文字向中间靠拢 */
    .footer-inner-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 900px; /* 控制文字向内收缩的距离 */
        margin: 0 auto;
    }
    
    .footer-left p {
        margin: 0;
        letter-spacing: 0.5px;
        color: #444444;
    }
    
    /* 右侧联系方式排版 */
    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px; /* 项目之间的垂直间距 */
    }
    
    .footer-contact-item a {
        color: #111111; /* 优化：浅色背景下链接改为醒目的深碳灰 */
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
    }
    
    .footer-contact-item a:hover {
        color: #777777; /* 悬浮时变柔和 */
        border-bottom: 1px solid #777777; /* 悬浮时增加纤细下划线提示 */
    }
    
    .footer-contact-item strong {
        color: #111111; /* 优化：加粗加黑强调提示标签 */
        font-weight: 500;
        margin-right: 5px;
    }

    /* 4. 统一响应式断点（统一为 1199px） */
    @media (max-width: 1199px) {
        .footer-container {
            padding: 0 20px !important;
        }
        .footer-inner-content {
            flex-direction: column;
            text-align: center;
            gap: 25px;
        }
        .footer-right {
            align-items: center;
        }
    }
