   /* 核心：返回首页悬浮按钮样式 */
        .back-to-home {
            /* 固定定位，始终在右上角 */
            position: fixed;
            bottom: 30px;
            left: 30px;
            /* 按钮样式 - 简约蓝色风格 */
            width: 50px;
            height: 50px;
            background-color: #007bff; /* 主蓝色 */
            color: white;
            border-radius: 50%; /* 圆形图标 */
            text-align: center;
            line-height: 50px;
            font-size: 24px;
            cursor: pointer; /* 鼠标悬停显示手型 */
            box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3); /* 轻微阴影增加立体感 */
            transition: all 0.3s ease; /* 过渡动画，更丝滑 */
            z-index: 9999; /* 确保在最上层显示 */
            text-decoration: none; /* 去除链接下划线 */
        }

        /* 鼠标悬停效果 */
        .back-to-home:hover {
            background-color: #0056b3; /* 加深蓝色 */
            transform: scale(1.1); /* 轻微放大 */
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .back-to-home {
                width: 45px;
                height: 45px;
                line-height: 45px;
                font-size: 20px;
                bottom: 20px;
                right: 20px;
            }
        }