


        .magnifier {
            position: relative;
            width:100%;
            overflow: visible; /* 允许放大视图溢出 */
        }

        .magnifier-container {
            position: relative;
            width: 100%;
            height: 536px; /* 固定主图区域高度 */
            overflow: hidden;
            cursor: crosshair;
			border: 1px solid #ddd;
           
        }

        .images-cover {
			height: 100%;
			width: 100%;
			position: relative;
			display: flex;
			justify-content: center;
			align-items: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 0.3s ease;
        }

        .image-bigger {
            position: absolute;
            bottom: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.9);
			z-index:9;
			display: flex;
			justify-content: center;
			align-items: center;
			width: 30px;
			height: 30px;
			cursor: pointer;
			background-color: #ccc;
        }

        .move-view {
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
            background-color: rgba(204, 204, 204, .5);

            display: none;
            pointer-events: none;
            z-index: 5;

        }
		.e_magnifier-5 .add-icon{
			    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 9;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
		}
		.e_magnifier-5 .add-icon::before{
			    content: "";
    position: absolute;
    right: -2px;
    bottom: -2px;
    display: block;
    width: 5px;
    height: 2px;
    transform: rotateZ(45deg);
    background-color: #fff;
		}
        /* 放大视图区域 */
        .magnifier-view {
            position: absolute;
            top: 0;
            left: 100%; /* 默认在主图右侧 */
            margin-left: 20px;
            width: 500px;
            height: 500px;
             background-color: rgba(204, 204, 204, .5);

      
            display: none;
            z-index: 20;
            overflow: hidden;
            background-repeat: no-repeat;
           
        }

        /* 响应式调整：小屏幕下放大视图覆盖或隐藏 */
        @media (max-width: 1024px) {
            .magnifier-view {
                left: 0;
                top: 0;
                margin-left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                pointer-events: none;
                z-index: 15;
                border: none;
                border-radius: 12px;
            }
            .magnifier-container:hover .magnifier-view {
                display: block;
                opacity: 1;
            }
        }

        .magnifier-line {
            overflow-x: auto;
            white-space: nowrap;
            padding-bottom: 5px;
        }
        
        /* 隐藏滚动条但保留功能 */
        .magnifier-line::-webkit-scrollbar {
            height: 6px;
        }
        .magnifier-line::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        .magnifier-line::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 3px;
        }

        .p_thumbnail_box {
            display: inline-flex;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .static-img {
            width: 60px;
            height: 60px;
            border: 2px solid transparent;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            overflow: hidden;
            flex-shrink: 0;
        }

        .static-img:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .static-img.active {
            border-color: #3b82f6;
        }

        .small-img {
            width: 100%;
            height: 100%;
        }

        .small-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 加载动画 */
        .loading-spinner {
            border: 3px solid #f3f3f3;
            border-top: 3px solid #3b82f6;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
            display: none;
            margin: auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
 