.stick-banner-fixed-container {
            position: sticky;
            top: 0;
            z-index: 999;
            background-color: #f5f5f5;
            position: -webkit-sticky;
            will-change: position;
        }
        .stick-banner-container {
            width: 100%;
            height: 80px;
            overflow: hidden;
            position: relative;
            -webkit-overflow-scrolling: touch;
            background-color: #fff;
            /*border-radius: 8px;*/
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            -webkit-tap-highlight-color: transparent;
            tap-highlight-color: transparent;

        }
        .stick-banner-wrapper {
            display: flex;
            height: 100%;
            transition: transform 0.3s ease-out;
            will-change: transform;
        }
        .stick-banner-item {
            flex: 0 0 100%;
            height: 100%;
            cursor: pointer;
            position: relative;
            padding: 0;
            /* 确保自定义Node充满轮播项 */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* 自定义轮播项内容容器 */
        .banner-item-content {
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        .stick-banner-hint {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: #999;
            pointer-events: none;
            background: rgba(255,255,255,0.8);
            padding: 2px 8px;
            border-radius: 10px;
            z-index: 10;
            -webkit-transform: translateY(-50%);
        }
        .banner-dots {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 10;
            -webkit-transform: translateX(-50%);
        }
        .banner-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: rgba(255, 165, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
        }
        .banner-dot.active {
            background-color: #ff8c00;
            width: 18px;
            border-radius: 3px;
        }
        .stick-banner-container::-webkit-scrollbar {
            display: none;
        }
        .preview-tips {
            margin: 20px 10px;
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }