body {
  /* 防止页面滚动穿透 */
  overflow-x: hidden;
}



/* 遮罩层 修复fixed定位、滚动穿透 */
.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  min-width: 320px;
  max-width: 630px;
  margin: 0 auto;
  overflow: hidden;
}

/* 提示弹窗 */
.tip-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
}

.tip-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 28px;
}

.confirm-btn {
  width: 120px;
  height: 40px;
  line-height: 40px;
  background: #07c160;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.confirm-btn:active {
  opacity: 0.85;
}