.common-mask {
  z-index: 10000;
  background: rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.show-tips {
  z-index: 10002;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  border-radius: 5px;
  min-width: 120px;
  max-width: 500px;
  text-align: center;
  line-height: 26px;
}
.show-tips p {
  line-height: 40px;
  padding: 5px 0;
  height: 50px;
}
.show-tips.success {
  background: #f0f9eb;
  border-color: #e1f3d8;
  color: #67c23a;
  box-shadow: 0 2px 12px #e1f3d8;
}
.show-tips.fail {
  background: #fef0f0;
  border-color: #fde2e2;
  color: #f56c6c;
  box-shadow: 0 2px 12px #fde2e2;
}
.dialog-tips {
  position: fixed;
  min-width: 260px;
  z-index: 10001;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.dialog-tips .dialog-tips-title {
  height: 60px;
  border-bottom: 1px solid #dddddd;
  font-size: 16px;
  line-height: 60px;
  text-indent: 38px;
  color: #000;
}
.dialog-tips .dialog-tips-close {
  position: absolute;
  top: 20px;
  right: 35px;
  width: 16px;
  height: 16px;
  text-align: center;
  font-family: '宋体';
  font-weight: 700;
  color: #000;
  cursor: pointer;
  font-style: normal;
}
.dialog-tips .dialog-tips-content {
  padding: 20px;
  color: #666;
  overflow-y: auto;
}
.dialog-tips .dialog-tips-content label {
  vertical-align: top;
}
.dialog-tips .common-btn {
  padding: 0 20px 15px 20px;
  text-align: right;
}
.dialog-tips .common-btn button {
  margin-left: 20px;
}
.illegal-tips-container {
  display: inline-block;
}
span.illegal-tips {
  color: #ff0000;
  display: none;
}
