 /* 全局重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }

        /* 页尾容器 */
        footer {
            width: 100%;
            background-color: #f8f8f8; /* 背景底色，可根据需求调整 */
            min-height: 360px; /* 控制高度在360px左右 */
            padding: 30px 0;
            
        }

        /* 内容容器 - 限制宽度1200px并居中 */
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px; /* 移动端内边距 */
        }

        /* 公司口号样式 */
        .slogan {
            font-size: 18px;
            color: #333;
            text-align: center;
            padding: 15px 0;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .slogan span {
            color: #FF0000; /* 企业色强调关键词 */
        }

        /* 内容主体布局 - 三列分布 */
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap; /* 自适应换行 */
            margin-bottom: 25px;
        }

        /* 左侧地址区域 */
        .footer-left {
            flex: 1;
            min-width: 280px;
            padding: 10px;
        }

        .footer-left h3 {
            font-size: 16px;
           
            margin-bottom: 15px;
        }

        .footer-left p {
            color: #666;
            line-height: 1.6;
        }

        /* 中间链接区域 */
        .footer-middle {
            flex: 1;
            min-width: 280px;
            padding: 10px;
        }

        .footer-middle h3 {
            font-size: 16px;
            
            margin-bottom: 15px;
        }

        .footer-middle ul {
            list-style: none;
        }

        .footer-middle li {
            margin-bottom: 10px;
        }

        .footer-middle a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-middle a:hover {
            color: #FF0000; /*  hover效果用企业色 */
        }

        /* 右侧公众号区域 */
        .footer-right {
            flex: 1;
            min-width: 280px;
            padding: 10px;
            text-align: center;
        }

        .footer-right h3 {
            font-size: 16px;
            
            margin-bottom: 15px;
        }

        .qrcode {
            width: 120px;
            height: 120px;
            border: 1px solid #eee;
            margin: 0 auto;
            background: url("http://liuyuezhenzhu.com/template/elec_wpcom_one/style/wx.png") center/cover no-repeat; /* 替换为实际公众号图片地址 */
        }

        .qrcode-text {
            margin-top: 10px;
            color: #666;
            font-size: 14px;
        }

        /* 横线分隔 */
        .divider {
            width: 100%;
            height: 1px;
            background-color: #eee;
            margin: 20px 0;
        }

        /* 版权信息区域 */
        .copyright {
            text-align: center;
            color: #999;
            font-size: 14px;
            line-height: 1.8;
        }

        .copyright a {
            color: #666;
            text-decoration: none;
        }

        .copyright a:hover {
            color: #FF0000;
        }

        /* 响应式适配 - 小屏幕堆叠布局 */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-left, .footer-middle, .footer-right {
                margin-bottom: 20px;
            }
        }