.factory-images-tip {
    color: #999;
    font-size: 12px;
    font-weight: normal;
}
.factory-image-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.factory-image-item {
    width: 100px;
    height: 100px;
    position: relative;
    flex-shrink: 0;
}
.factory-image-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.factory-image-empty {
    width: 100%;
    height: 100%;
    border: 1px dashed #dcdfe6;
    border-radius: 4px;
    background: #fafafa;
    color: #909399;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.factory-image-empty:hover {
    border-color: #409eff;
    color: #409eff;
}
.factory-image-empty .fa {
    font-size: 20px;
    margin-bottom: 4px;
}
.factory-image-empty span {
    font-size: 12px;
}
.factory-image-preview {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #dcdfe6;
}
.factory-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.factory-image-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}
.factory-image-remove:hover {
    background: rgba(0, 0, 0, 0.75);
}
