body {
  margin: 0;
  padding: 0;
  background: #e6eaeb;
  font-family: Arial, "微软雅黑", "宋体", sans-serif;

  /* 新增：使容器在视口内水平/垂直居中 */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
  color: #7b7b7b;
}

.new-alert-box {
  position: relative;
  /* 移除固定顶部外边距，使用 flex 居中 */
  margin: 0 auto;
  padding: 180px 85px 22px;
  border-radius: 10px 10px 0 0;
  /* 保留白色备选背景，同时使用背景图（默认 k11.jpg）并居中全覆盖 */
  background-color: #fff;
  background-image: url("static/picture/k11.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 5px 9px 17px rgba(102, 102, 102, 0.75);
  width: 286px;
  color: #fff;
  text-align: center;
}

.new-alert-box p {
  margin: 0;
}

.new-alert-circle {
  position: absolute;
  top: -50px;
  left: 111px;
}

.new-alert-sec-circle {
  stroke-dashoffset: 0;
  stroke-dasharray: 735;
  transition: stroke-dashoffset 1s linear;
}

.new-alert-sec-text {
  position: absolute;
  top: 29px;
  left: 170px; /* 将内联 left:170px 移到这里 */
  width: 115px;
  color: #000;
  font-size: 68px;
  text-align: center;
}

.new-alert-sec-unit {
  font-size: 34px;
}

.new-alert-body {
  margin: 35px 0;
  margin-bottom: 30px;
}

.new-alert-head {
  color: #242424;
  font-size: 28px;
}

.new-alert-concent {
  margin: 25px 0 14px;
  color: #7b7b7b;
  font-size: 18px;
}

.new-alert-concent p {
  line-height: 27px;
}

.new-alert-btn {
  display: block;
  border-radius: 10px;
  background-color: #FF8346;
  height: 55px;
  line-height: 55px;
  width: 286px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 2px;
}

.new-alert-btn:hover {
  background-color: #FF8346;
}

.new-alert-footer {
  margin: 0 auto;
  height: 42px;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
.new-alert-footer-text p {
  color: #7a7a7a;
  font-size: 22px;
  line-height: 18px;
}

/* footer icon small layout */
.tip_footer_text {
  margin-left: 8px;
  font-size: 14px;
  color: #000;
}

/* 保留内联小样式（如果原页面中还有内联 style 属性，这里不再重复） */
