/* 采访档案页面特有样式 */

/* --- 列表交互样式 --- */
.archive-row {
    transition: opacity 0.3s ease;
}
/* 当鼠标hover在列表容器时，非hover项变淡 */
.archive-list:hover .archive-row:not(:hover) {
    opacity: 0.3; 
}

/* 悬浮预览图容器 */
#preview-cursor {
    position: fixed; top: 0; left: 0;
    width: 300px; height: 400px;
    pointer-events: none;
    z-index: 50;
    opacity: 0;
    transform: translate(-50%, -50%); /* 居中于鼠标 */
}

#preview-cursor img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%); /* 默认黑白 */
}
