@charset "utf-8";
        /* 整体容器 */
        .product-gallery {
            max-width: 600px;
            margin: 0px auto 30px auto;
        }

        /* 主图容器 */
        .main-image-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
            border: 1px solid #eee;
            margin-bottom: 20px;
        }

        /* 主图样式 */
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* 放大镜玻璃板 */
        .magnifier-lens {
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid #fff;
            cursor: move;
            display: none;
            box-shadow: 0 0 8px rgba(0,0,0,0.1);
			z-index:100;
        }

        /* 放大显示区 */
        .zoom-preview {
            position: absolute;
            top: 0;
            left: 105%;
            width: 500px;
            height: 500px;
            background: #fff;
            border: 1px solid #ddd;
            background-repeat: no-repeat;
            display: none; z-index:9999;
        }

        /* 缩略图容器 */
        .thumbnails {
            display: flex;
            gap: 15px;
            padding: 10px 0;
            overflow-x: auto;
        }

        /* 缩略图样式 */
        .thumbnail {
            width: 80px;
            height: 80px;
            min-width: 80px;
            object-fit: cover;
            border: 2px solid #eee;
            cursor: pointer;
            transition: all 0.3s ease; margin-left:2px;
        }

        .thumbnail.active {
            border-color: #1890ff;
            transform: scale(1.05);
        }

        .thumbnail:hover {
            opacity: 0.9;
        }

        /* 滚动条样式 */
        .thumbnails::-webkit-scrollbar {
            height: 6px;
        }

        .thumbnails::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 4px;
        }