<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>二维码图片覆盖图标</title>
<style>
.container {
position: relative;
width: 300px;
height: 300px;
background: url('your_qr_code_image.jpg') center/cover no-repeat;
}
.icon {
position: absolute;
width: 15px;
height: 15px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: url('your_icon_image.ico') center/cover no-repeat;
}
</style>
</head>
<body>
<div class="container">
<div class="icon"></div>
</div>
</body>
</html>