/* 放大镜效果样式 */
.magnifier-container {
    position: relative;
    display: inline-block;
    width: 400px;
    height: 400px;
}
.magnifier-img {
    position: absolute;
    top: 10px;
    right: 10px;
    width:40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
}
.small-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #ddd;
    cursor: crosshair;
}

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

.zoom-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    display: none;
    z-index: 10;
}

.large-image-container {
    position: absolute;
    top: 0;
    left: 100%;
    width: 400px;
    height: 400px;
    margin-left: 20px;
    overflow: hidden;
    border: 1px solid #ddd;
    display: none;
    background: #fff;
    z-index: 20;
}

.large-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px; /* 大图是小图的2倍大小，用于放大效果 */
    height: auto;
    max-width: none;
    transition: transform 0.1s ease-out;
}