@media screen and (min-width: 769px) {
  .Tips_Container {
    width: 25%;
    margin: 0 auto;
    position: fixed;
    left: 50%;
    top: -50%;
    transform: translateX(-50%);
    z-index: 99999;
    border-radius: 0.5rem;
    transition: all 0.8s;
  }
  .Tips_Container .TipMesage {
    width: 70%;
    padding: 0 15%;
    margin: 0rem auto;
    border-radius: 1.2rem;
    height: 4.5rem;
    line-height: 4.5rem;
    color: #1C1C1E;
    font-weight: 500;
    font-weight: 300;
    z-index: 100;
    font-size: 1.8rem;
    font-family: "Inter";
    position: relative;
    white-space: nowrap;
    /* 设置文本不换行 */
    overflow: hidden;
    /* 隐藏溢出的内容 */
    text-overflow: ellipsis;
  }
  .Tips_Container .TipSuccess {
    outline: #34C759 0.1rem solid;
    background-color: #EDFCF4;
    color: #1C1C1E;
  }
  .Tips_Container .TipSuccess i {
    position: absolute;
    left: 2rem;
    color: #34C759;
    font-size: 2rem;
  }
  .Tips_Container .TipWarning {
    outline: #FF9500 0.1rem solid;
    background-color: #FFF9EC;
    color: #1C1C1E;
  }
  .Tips_Container .TipWarning i {
    position: absolute;
    left: 2rem;
    color: #FF9500;
    font-size: 2rem;
  }
  .Tips_Container .TipErorr {
    outline: #FF3B30 0.1rem solid;
    background-color: #FFEFEF;
    color: #1C1C1E;
  }
  .Tips_Container .TipErorr i {
    position: absolute;
    left: 2rem;
    color: #FF3B30;
    font-size: 2rem;
  }
  .Tips_Container .TipPrompt {
    outline: #007AFF 0.1rem solid;
    background-color: #E9F0FF;
    color: #1C1C1E;
  }
  .Tips_Container .TipPrompt i {
    position: absolute;
    left: 2rem;
    color: #007AFF;
    font-size: 2rem;
  }
}
@media screen and (max-width: 769px) {
  .Tips_Container {
    width: 85%;
    margin: 0 auto;
    position: fixed;
    left: 50%;
    top: -50%;
    transform: translateX(-50%);
    z-index: 99999;
    border-radius: 1.3333vw;
    transition: all 0.8s;
  }
  .Tips_Container .TipMesage {
    width: 70%;
    padding: 0 15%;
    margin: 0vw auto;
    border-radius: 3.2vw;
    height: 12vw;
    line-height: 12vw;
    color: #1C1C1E;
    font-weight: 500;
    font-weight: 300;
    z-index: 100;
    font-size: 4.8vw;
    font-family: "Inter";
    position: relative;
    white-space: nowrap;
    /* 设置文本不换行 */
    overflow: hidden;
    /* 隐藏溢出的内容 */
    text-overflow: ellipsis;
  }
  .Tips_Container .TipSuccess {
    outline: #34C759 0.2667vw solid;
    background-color: #EDFCF4;
    color: #1C1C1E;
  }
  .Tips_Container .TipSuccess i {
    position: absolute;
    left: 5.3333vw;
    color: #34C759;
    font-size: 5.3333vw;
  }
  .Tips_Container .TipWarning {
    outline: #FF9500 0.2667vw solid;
    background-color: #FFF9EC;
    color: #1C1C1E;
  }
  .Tips_Container .TipWarning i {
    position: absolute;
    left: 5.3333vw;
    color: #FF9500;
    font-size: 5.3333vw;
  }
  .Tips_Container .TipErorr {
    outline: #FF3B30 0.2667vw solid;
    background-color: #FFEFEF;
    color: #1C1C1E;
  }
  .Tips_Container .TipErorr i {
    position: absolute;
    left: 5.3333vw;
    color: #FF3B30;
    font-size: 5.3333vw;
  }
  .Tips_Container .TipPrompt {
    outline: #007AFF 0.2667vw solid;
    background-color: #E9F0FF;
    color: #1C1C1E;
  }
  .Tips_Container .TipPrompt i {
    position: absolute;
    left: 5.3333vw;
    color: #007AFF;
    font-size: 5.3333vw;
  }
}
