 .parent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background-color: rgba(36, 43, 51, 0.9);
            color: #fff;
            display: flex;
            align-items: center;
            height: 50px;
            padding: 10px;
        }

        .gift-boximg {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

        .gift-boximg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 3px;
        }

        .gift-boxtxt {
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex-grow: 1;
        }

        .boxtxt-span {
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            margin-bottom: 1px;
        }

        .boxtxt-span span {
            font-size: 11px;
            line-height: 1;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            color: #999999;
        }

        .ui-fzi18.txtn.dspb.ui-txtifff {
            font-size: 14px;
            font-weight: normal;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }

        .down {
            background-color: orange;
            padding: 6px 14px;
            border-radius: 15px;
            font-size: 12px;
            margin-left: 10px;
            color: #fff !important;
        }

        .gift-boxtxt .ui-fzi18.txtn.dspb.ui-txtifff {
            margin-top: -5px;
        }

        /* 媒体查询 */
        @media (min-width: 1024px) {
            .parent {
                display: none;
            }
        }