.tips-wrapper {
  position: fixed;
  left: 50%;
  top: 70px;
  width: 300px;
  margin-left: -150px;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  padding: 26px;
  box-sizing: border-box;
  z-index: 9999;
}

.tips-wrapper .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 16px;
}

.tips-wrapper .main p {
  margin: 0;
}

.tips-wrapper .main .title {
  font-size: 18px;
  line-height: 24px;
}

.tips-wrapper .main .content {
  font-size: 14px;
  line-height: 20px;
  color: #83898f;
  margin-top: 10px;
}

.tips-wrapper.error .icon {
  background: url("./error.svg") center no-repeat;
  background-size: 100%;
}

.tips-wrapper.error .title {
  color: #ff475a;
}

.tips-wrapper.warning .icon {
  background: url("./warning.svg") center no-repeat;
  background-size: 100%;
}

.tips-wrapper.warning .title {
  color: #faaf00;
}
