        .fixed-bottom-bar {
            position: fixed; /* 固定定位，脱离文档流，始终相对于浏览器窗口定位 */
            bottom: 0;       /* 紧贴视口底部 */
            left: 0;         /* 紧贴视口左侧 */
            width: 100%;     /* 宽度占满整个屏幕 */
            height: 70px;    /* 电脑端适当增加高度，显得更大气 */
            background-color: #1a1a1a; /* 深颜色背景 */
            display: flex;   /* 使用 Flex 布局 */
            align-items: center; /* 垂直居中对齐 */
            justify-content: center; /*关键修改：让内部所有元素水平居中 */
            z-index: 999;    /* 提高层级，确保浮在页面其他内容之上 */
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15); /* 顶部添加阴影，增加层次感 */
        }

        /* 居中容器：限制内容最大宽度，防止在超宽屏幕上拉得太长 */
        .bar-inner {
            display: flex;
            align-items: center; /* 内部元素垂直居中 */
            gap: 20px;           /* 价格信息与按钮之间的间距 */
            max-width: 1200px;   /* 与页面主体内容宽度保持一致 */
            width: 100%;
            padding: 0 20px;     /* 左右预留边距，防止在小尺寸笔记本屏幕上贴边 */
        }

        /* 价格信息区域 */
        .price-info {
            display: flex;
            align-items: baseline; /* 文字按基线对齐，更美观 */
            gap: 15px;             /* 价格文字之间的间距 */
            color: #ffffff;
        }

        .price-info .item {
            font-size: 14px;
            color: #ccc;
        }

        .price-info .item.highlight {
            color: #ff4d4f; /* 到手价使用醒目的红色 */
            font-size: 22px; /* 电脑端字体适当加大 */
            font-weight: bold;
        }

        .price-info .item span.label {
            font-size: 14px;
            margin-right: 5px;
        }

        /* 立即购买按钮 */
        .buy-btn {
            background: linear-gradient(90deg, #ff7875, #ff4d4f); /* 渐变红色背景 */
            color: white;
            border: none;
            padding: 10px; /* 电脑端按钮适当加宽 */
            border-radius: 10px; /* 电脑端常用小圆角或直角，更显干练 */
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s; /* 鼠标悬停过渡效果 */
            letter-spacing: 1px; /* 增加字间距，提升质感 */
        }

        .buy-btn:hover {
            transform: translateY(-2px); /* 鼠标悬停轻微上浮 */
            box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4); /* 增加发光阴影 */
        }

        .buy-btn:active {
            transform: translateY(0);
        }