  /* 遮障层整体 */
    .tk_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.tk_error-logo{
    background: url("./error.png");
    width: 100%;
    height: 200px;
}
.tk_success-logo{
    background: url("./sucess.png");
    width: 100%;
    height: 200px;
}
/* 消息框通用样式，白色背景、圆角、阴影等 */
.tk_message-box {
  background-color: white;

  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 80%;
  max-width: 400px;
    padding-top: 0;
}

/* 关闭按钮样式 */
 #tk_closeButton {
     padding: 8px 8px;
     background-color: #007bff;
     color: white;
     border: none;
     border-radius: 3px;
     cursor: pointer;
     border-radius: 10px;
     width: 110px;
     margin-top: 30px;
     margin-bottom: 30px;
 }


/* 成功提示框标题样式 */
.tk_success-title {

  font-size: 20px;
}

/* 错误提示框标题样式 */
.tk_error-title {

  font-size: 20px;
}

/* 提示框内段落文字样式 */
.tk_message-text {
  font-size: 16px;
  margin-top: 10px;
}

/* 不同屏幕尺寸下的适配调整 */
@media screen and (max-width: 600px) {
 .tk_success-title,
 .tk_error-title {
    font-size: 18px;
  }
 .tk_message-text {
    font-size: 14px;
  }
}

@media screen and (min-width: 601px) {
 .tk_success-title,
 .tk_error-title {
    font-size: 22px;
  }
 .tk_message-text {
    font-size: 16px;
  }
}