/* 全屏扫码容器 */
.pisell-qr-scanner-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 视频容器 */
.scan-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 视频元素 */
.scan-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 关闭按钮 */
.scan-close-left {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10000;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* 上传按钮 */
.scan-upload {
  position: fixed;
  right: 30px;
  bottom: 60px;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  font-size: 48px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
}

/* 隐藏的文件输入框 */
.scan-file-input {
  display: none;
} 