.message-tips {
  position: fixed;
  z-index: 29999;
  left: 50%;
  top: 20px;
  margin-left: -190px;
  width: 380px;
  height: 48px;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 6px;
  color: #555;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
}
.message-image {
  width: 20px;
  height: 20px;
  margin-top: 14px;
  margin-right: 15px;
  background-size: 100% 100%;
  display: none;
}
.message-text {
  overflow: hidden;
  flex: 1;
  -webkit-flex: 1;
}
.message-tips-success {
  background-color: #f0f9eb;
  border-color: #e1f3d8;
  color: #67c23a;
  text-align: left;
}
.message-tips-success .message-image {
  background-image: url(../../images/common/success.png);
  display: block;
}
.message-tips-error {
  background-color: #fef0f0;
  border-color: #fde2e2;
  color: #f56c6c;
  text-align: left;
}
.message-tips-error .message-image {
  background-image: url(../../images/common/error.png);
  display: block;
}