body, html {
    margin: 0;
    padding: 0;
}


/*
加好样式*/
/* 上传容器 */
.multi-upload-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

/* 加号上传按钮 */
.upload-box {
    width: 100px;
    /*height: 100px;*/
    border: 2px dashed #c0c4cc;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: #f8f8f8;
}

.upload-box:hover {
    border-color: #409EFF;
    background: #f5fbff;
}

.plus-icon {
    font-size: 24px;
    color: #909399;
    transition: all 0.3s;
}

.upload-box:hover .plus-icon {
    color: #409EFF;
}

/* 图片预览列表 */
.preview-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ebeef5;
    background: #fff;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delete-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ebeef5;
}

.progress-bar {
    height: 100%;
    background: #409EFF;
    transition: width 0.3s;
}

/* 上传状态 */
.upload-status {
    margin-top: 10px;
    color: #606266;
    font-size: 13px;
}
.preview-image-detail{
	width: 10%;
}