/* 图片模块样式 */
.image-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.image-item:hover {
    background-color: #f8f9fa;
}

.image-item span {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.image-actions {
    margin-left: 10px;
    position: relative;
}

.image-actions .action-dots {
    cursor: pointer;
    padding: 0 5px;
    font-size: 1.2em;
    color: #666;
}