    /* 完全独立的轮播组件命名空间 */
        .rd-image-carousel {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
            margin: 0;
        }
        
        .rd-image-carousel .rd-carousel-track {
            display: flex;
            gap: 15px;
            transition: transform 0.5s ease;
            padding: 10px 0;
            margin: 0;
            list-style: none;
        }
        
        .rd-image-carousel .rd-carousel-item {
            flex: 0 0 auto;
            width: 280px;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            position: relative;
            cursor: pointer;
        }
        
        .rd-image-carousel .rd-carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            border: none;
        }
        
        .rd-image-carousel .rd-carousel-item:hover img {
            transform: scale(1.05);
        }
        
        /* 悬停提示样式 */
        .rd-image-carousel .rd-carousel-item .hover-tooltip {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none; /* 确保提示不干扰点击 */
            white-space: nowrap;
        }
        
        .rd-image-carousel .rd-carousel-item:hover .hover-tooltip {
            opacity: 1;
        }
        
        /* 控制按钮样式 */
        .rd-image-carousel .rd-carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            border: none;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
            padding: 0;
        }
        
        .rd-image-carousel .rd-carousel-control:hover {
            background-color: #f0f0f0;
            transform: translateY(-50%) scale(1.1);
        }
        
        .rd-image-carousel .rd-carousel-prev {
            left: 10px;
        }
        
        .rd-image-carousel .rd-carousel-next {
            right: 10px;
        }
        
        /* 大图查看器样式 */
        .fullsize-viewer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
        }
        
        .fullsize-viewer.active {
            display: flex;
        }
        
        .fullsize-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .fullsize-image {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border: 4px solid white;
            border-radius: 4px;
        }
        
        .close-viewer {
            position: absolute;
            top: -40px;
            right: -40px;
            color: white;
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        
        .close-viewer:hover {
            transform: scale(1.1);
        }
        
        .image-caption {
            color: white;
            text-align: center;
            margin-top: 15px;
            font-size: 16px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .rd-image-carousel .rd-carousel-item {
                width: 220px;
                height: 160px;
            }
            
            .rd-image-carousel .rd-carousel-control {
                width: 34px;
                height: 34px;
            }
            
            .close-viewer {
                top: -30px;
                right: 0;
                font-size: 24px;
            }
        }
        
        .rd-image-carousel .rd-carousel-control:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: translateY(-50%) scale(1);
        }