* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", system-ui;
  background: linear-gradient(to right, #fff5f7, #ffffff);
  color: #333;
  padding-bottom: 80px;
}

/* 顶部标题：靠右对齐 */
.header-title {
  text-align: center;
  padding: 40px 24px 30px;
}
.main-title {
  font-size: 24px;
  color: #d62121;
  font-weight: bold;
}
.sub-title {
  font-size: 18px;
  color: #888;
  margin-top:12px;
}

.card-wrap {
  margin: 0 8px;
  background: #ffffff;
  border-radius: 16px;
  padding:28px 24px;
  box-shadow: 0 1px 8px #0000000c;
}
.card-title {
  font-size:20px;
  font-weight:bold;
  margin-bottom:12px;
}
.flow-item {
  font-size:16px;
  color:#444;
  margin:8px 0;
  line-height:1.2;
}
.tip-text {
  font-size:16px;
  color:#888;
  line-height:1.6;

  margin-top:16px;
}

/* 底部浅红提示条 */
.warn-box-new {
  margin-top:26px;
  border:1px solid #ffdfdf;
  background:#fff5f6;
  border-radius:8px;
  padding:16px 14px;
}
.warn-text {
  font-size:16px;
  color:#b81818;
  line-height:1.6;
}

/* 按钮容器 */
.btn-container {
  margin: 20px 20px 0;
}
/* 跳转按钮样式 */
.submit-btn{
  display:block;
  width:100%;
  height:50px;
  line-height:50px;
  text-align:center;
  background-color:#d62121;
  color:#fff;
  border-radius:25px;
  font-size:18px;
  text-decoration: none;
  border:none;
}
.submit-btn:active{
  background-color:#b61414;
}