@charset "utf-8";
        /* 整体容器 */
        .product-gallery {
            max-width: 600px;
            margin: 0px 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);
        }

        /* 放大显示区 */
        .zoom-preview {
            position: absolute;
            top: 0;
            left: 100%;
            width: 400px;
            height: 400px;
            background: #fff;
            border: 1px solid #ddd;
            background-repeat: no-repeat;
            display: none;
        }

        /* 缩略图容器 */
        .thumbnails {
            display: flex;
            gap: 15px;
            padding: 10px 10px;
            overflow-x: auto;
			margin:0px 10px 0px 0px;
        }

        /* 缩略图样式 */
        .thumbnail {
            width: 104px;
            height: 120px;
            min-width: 110px;
            object-fit: cover;
            border: 1px solid #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
			margin:0px 4px;
        }

        .thumbnail.active {
            border-color: #eb6101;
            transform: scale(1.05);
        }

        .thumbnail:hover {
            opacity: 0.9;
        }

        /* 滚动条样式 */
        .thumbnails::-webkit-scrollbar {
            height: 6px;
        }

        .thumbnails::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 4px;
        }