<div class="home">
<img src="图片路径">
<input type="file">
</div>
.home{
width: 70px;
height: 25px;
position: relative;
}
img {
position: absolute;
width: 70px;
height: 25px;
top: 0;
left: 0;
pointer-events: none; // 设置为none,点击图片激活上传文件点击事件
z-index: 999;
}
input{
position: absolute;
width: 70px;
height: 25px;
top: 0;
left: 0;
}