body {
  color: #4A4A4A;
}

/*公用弹窗样式*/
.mask,
.loadingMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 20;
}

.loadingMask {
  z-index: 99;
}

.loadingMask img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tipsContent,
.codeContent {
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  text-align: center;
  border-radius: 0.1rem;
  transform: translate(-50%,-50%);
}

.tipsContent h6 {
  padding: 0.3rem 0;
  color: #000000;
  font-size: 0.3rem;
}

.tipsContent p {
  padding: 0 0.3rem 0.4rem;
  color: #999999;
  font-size: 0.3rem;
  line-height: 1.2;
}

.tipsContent p .tal {
  text-align: left;
  display: block;
}

.tipsContent .black {
  color: #333;
  font-weight: 700;
  font-size: 0.4rem;
  display: inline-block;
}

.tipsContent button {
  border-top: 1px solid #e5e5e5;
  font-size: 0.3rem;
  color: #1890FF;
  display: block;
  width: 100%;
  height: 1rem;
}

.tipsContent .dbBtnBox {
  border-top: 1px solid #e5e5e5;
}

.tipsContent .dbBtnBox button {
  float: left;
  width: 50%;
  border: 0 none;
}

.tipsContent .dbBtnBox .cancelBtn,
.tipsContent .dbBtnBox .cancelBtn2 {
  width: 49%;
  border-right: 1px solid #e5e5e5;
  color: #000000;
}

/*公用toast样式*/
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  background: rgba(0, 0, 0, .6);
  font: 0.3rem;
  line-height: 1;
  color: #FFFFFF;
  padding: 0.3rem;
  border-radius: 0.1rem;
  text-align: center;
}

/* 页面固定 */
.add_position {
  position: fixed;
  width: 100%;
}