.messafe-feedback {
  height: 50.2083333333vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 11.1979166667vw 13.125vw 7.9166666667vw 16.6145833333vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.messafe-feedback .title {
  font-size: 3.0208333333vw;
  text-align: center;
  margin-bottom: 2.03125vw;
}
.messafe-feedback .tips {
  font-size: 1.0416666667vw;
  width: 40.5729166667vw;
  text-align: center;
  margin: auto;
  margin-bottom: 3.8541666667vw;
  line-height: 1.7708333333vw;
}
.messafe-feedback input {
  height: 3.59375vw;
  padding-left: 1.8229166667vw;
  outline: none;
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
  font-size: 1.0416666667vw;
  margin-bottom: 2.0833333333vw;
}
.messafe-feedback .send-checkButton {
  margin: auto;
}

.errorTip {
  width: 26.5625vw;
  height: 14.5833333333vw;
  background-color: #000000;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 1.6666666667vw;
  animation: TipShow 1s forwards;
  opacity: 0;
  display: none;
}
.errorTip-icon {
  width: 3.6458333333vw;
  height: 3.6458333333vw;
}
.errorTip-message {
  font-size: 1.7708333333vw;
  font-weight: bold;
}

.successTip {
  width: 26.5625vw;
  height: 14.5833333333vw;
  background-color: #000000;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  animation: TipShow 1s forwards;
  opacity: 0;
  display: none;
}
.successTip-icon {
  width: 3.6458333333vw;
  height: 3.6458333333vw;
  margin-bottom: 1.6666666667vw;
}
.successTip-message {
  font-size: 1.7708333333vw;
  font-weight: bold;
  margin-bottom: 1.0416666667vw;
}
.successTip-remark {
  color: #b0b0b0;
  font-size: 1.3541666667vw;
}

@keyframes TipShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes TipHidden {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
