        .cgm-case-bar-slider {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* 横条容器 */
        .bar-container {
            display: flex;
            align-items: center;
            background: linear-gradient(145deg, rgba(30, 35, 60, 0.6), rgba(20, 25, 45, 0.8));
            border: 1px solid rgba(100, 130, 255, 0.15);
            border-radius: 16px;
            padding: 20px 30px;
            gap: 25px;
            transition: all 0.3s ease;
        }

        .bar-container:hover {
            border-color: rgba(100, 130, 255, 0.35);
        }

        /* 左侧标签区 */
        .bar-left {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .bar-icon {
            width: 50px;
            height: 50px;
            background: rgba(100, 130, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bar-icon svg {
            width: 24px;
            height: 24px;
            stroke: rgba(150, 180, 255, 0.8);
        }

        .bar-label {
            font-size: 11px;
            color: rgba(150, 170, 255, 0.7);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .bar-title {
            font-size: 16px;
            color: #fff;
            font-weight: 500;
        }

        /* 中间滑动区域 */
        .bar-slider-wrapper {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .bar-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .bar-slides a{
            text-decoration: none;
        }

        .bar-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .bar-slide:hover .case-name {
            color: #fff;
        }

        .client-logo {
            width: 45px;
            height: 45px;
            background: #fff;
            border-radius: 10px;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .client-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .case-info {
            flex: 1;
        }

        .case-name {
            font-size: 14px;
            color: #fff;
            transition: color 0.3s ease;
        }

        .case-client {
            font-size: 12px;
            color: #888;
        }

        /* 右侧导航和链接 */
        .bar-right {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        /* 滑动指示器 */
        .bar-dots {
            display: flex;
            gap: 6px;
        }

        .bar-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bar-dot.active {
            background: rgba(100, 130, 255, 0.8);
            width: 20px;
            border-radius: 4px;
        }

        .bar-dot:hover {
            background: rgba(100, 130, 255, 0.5);
        }

        /* 左右箭头 */
        .bar-arrows {
            display: flex;
            gap: 8px;
        }

        .bar-arrow {
            width: 32px;
            height: 32px;
            background: rgba(100, 130, 255, 0.1);
            border: 1px solid rgba(100, 130, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bar-arrow:hover {
            background: rgba(100, 130, 255, 0.2);
            border-color: rgba(100, 130, 255, 0.4);
        }

        .bar-arrow svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: rgba(150, 180, 255, 0.8);
            stroke-width: 2;
        }

        /* 查看全部链接 */
        .bar-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            border: 1px solid rgba(100, 130, 255, 0.3);
            border-radius: 8px;
            font-size: 13px;
            color: rgba(150, 180, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .bar-link:hover {
            background: rgba(100, 130, 255, 0.15);
            color: #fff;
        }

        .bar-link svg {
            width: 14px;
            height: 14px;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .bar-container {
                flex-wrap: wrap;
                gap: 15px;
            }

            .bar-left {
                width: 100%;
            }

            .bar-slider-wrapper {
                width: 100%;
            }

            .bar-right {
                width: 100%;
                justify-content: space-between;
            }
        }