.dialog-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.dialog-content {
  position: relative;
  width: 9.6rem;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.6rem;
}

.dialog-close {
  position: absolute;
  right: -0.6rem;
  top: -0.6rem;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../images/close.png") no-repeat center/contain;
  cursor: pointer;
}

/* 二维码弹窗 */
.qrcode-dialog .dialog-content {
  width: 8rem;
  height: 8rem;
  padding: 0.4rem;
  background: #fff;
}

.qrcode-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 规则弹窗 */
.rules-dialog .dialog-content {
  width: 9.6rem;
  background: #8b572a;
  border: 0.1rem solid #ffe4b5;
  padding: 0.8rem 0.6rem;
}

.rules-container {
  color: #fff;
  font-size: 0.32rem;
  line-height: 1.5;
}

/* 道具编码弹窗 */
.code-dialog .dialog-content {
  width: 9.6rem;
  background: #8b572a;
  border: 0.1rem solid #ffe4b5;
  padding: 0.8rem 0.6rem;
}

.code-container {
  text-align: center;
}

.code-text {
  color: #fff;
  font-size: 0.36rem;
  margin-bottom: 0.4rem;
}

.copy-btn {
  width: 4rem;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #ffe4b5;
  color: #8b572a;
  font-size: 0.32rem;
  border-radius: 0.4rem;
  margin: 0 auto;
  cursor: pointer;
}
