.scan-qrcode {
  position: relative;
  padding-left: 30px; /* 留出图标空间 */
}
 
.scan-qrcode::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%; /* 将图标垂直居中 */
  transform: translateY(-50%);
  width: 20px; /* 图标宽度 */
  height: 20px; /* 图标高度 */
  background: url('qrcode_icon.png') center no-repeat; /* 图标背景，需要替换成实际图标路径 */
  background-size: cover; /* 背景图片覆盖整个伪元素区域 */
}
.scan-qrcode_red {
  position: relative;
  padding-left: 30px; /* 留出图标空间 */
}
 
.scan-qrcode_red::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%; /* 将图标垂直居中 */
  transform: translateY(-50%);
  width: 20px; /* 图标宽度 */
  height: 20px; /* 图标高度 */
  background: url('qrcode_icon_red.png') center no-repeat; /* 图标背景，需要替换成实际图标路径 */
  background-size: cover; /* 背景图片覆盖整个伪元素区域 */
}