/* 弹窗样式 */
.content-popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000000001;
}

.content-popup {
  min-width: 298px;
  max-width: 448px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(108, 108, 108, 0.07);
  border-radius: 4px;
  padding: 28px;
}

.content-popup-text {
  min-height: 66px;
  font-size: 14px;
  color: #666;
  padding-top: 16px;
}
.content-popup-title{
  font-size: 16px;
}
.content-popup-btn-block {
  margin: 0 auto;
  width: max-content;
}

.content-popup-btn {
  border: 0;
  cursor: pointer;
  outline: 0;
}

.popup-btn{
  width: 80px;
  height: 30px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 28px;
}
.content-popup-close {
  background: #fff;
  margin-right: 26px;
  color: #333;
  border: 1px solid rgba(230, 230, 230, 1);
}

.content-popup-submit {
  background: #30CFD0;
  color: #fff;
  border: 1px solid #30CFD0;
}

.content-popup-submit:hover{
  background-color: #78DFE0;
  border: 1px solid #78DFE0;
}

.content-popup-close:hover{
  color: #9FE3E4;
}
