/*ご利用の流れ页面专用样式 - 极简扁平硬朗风格 (4px版) - 字体放大版 */
body {
  background-color: #f7f9fc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  margin: 0;
  padding: 0;
}

.procedure-process {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
  box-sizing: border-box;
}

/* 主标题：居中加粗，配以精致的短底边装饰条 */
.procedure-process-title {
  text-align: center;
  font-size: 26px; /* 放大至 26px */
  color: #0f294d; /* 统一使用首页深蓝黑色 */
  margin-top: 10px;
  margin-bottom: 45px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.procedure-process-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background-color: #2563eb; /* 首页标准蓝 */
  margin: 12px auto 0;
  border-radius: 2px;
}

.procedure-process-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.procedure-process-steps-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px; /* 统一 4px 圆角 */
  border: 1px solid #e1e8ed;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

/* 步骤数字：优雅的蓝色圆圈 */
.procedure-process-steps-step-number {
  background: #2563eb; /* 首页标准蓝 */
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; /* 放大至 22px */
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.15);
}

.procedure-process-steps-step-content {
  flex: 1;
  min-width: 0; /* 防止图片溢出 */
}

/* 步骤小标题 */
.procedure-process-steps-step-content-title {
  font-size: 20px; /* 放大至 20px */
  color: #0f294d;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf2f7;
}

.procedure-process-steps-step-content-description {
  font-size: 15px; /* 放大至 15px */
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 16px;
}

/* 提示卡片：柔和浅蓝背景 + 蓝色指示条 */
.procedure-process-steps-step-content-tip {
  background: #f0f5ff; /* 浅淡蓝 */
  border-left: 3px solid #2563eb; /* 标准蓝 */
  padding: 15px;
  margin: 20px 0;
  font-size: 15px; /* 放大至 15px */
  line-height: 1.6;
  color: #4a5568;
  border-radius: 0 4px 4px 0;
}

.procedure-process-steps-step-content-tip strong {
  color: #2563eb;
  font-weight: 700;
}

/* 示意图：添加柔和阴影和精细边框 */
.procedure-process-steps-step-content-image {
  width: 100%;
  height: auto;
  border: 1px solid #e2e8f0;
  border-radius: 4px; /* 统一 4px */
  margin: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: block;
}

.procedure-process-steps-step-content-caution {
  color: #ff3b30;
  font-weight: 700;
  margin: 12px 0;
  font-size: 15px; /* 放大至 15px */
}

.procedure-process-steps-step-content-policylist {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.procedure-process-steps-step-content-policylist-item {
  position: relative;
  padding: 6px 0 6px 20px;
  line-height: 1.55;
  color: #4a5568;
  font-size: 15px; /* 放大至 15px */
}

.procedure-process-steps-step-content-policylist-item:before {
  content: "•";
  position: absolute;
  left: 0px;
  color: #2563eb; /* 列表圆点为标准蓝 */
  top: 5px;
  font-weight: bold;
  font-size: 18px;
}

.procedure-process-steps-step-content-image-caption {
  margin: -7px 0 16px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

/* 响应式样式 */
@media screen and (max-width: 767px) {
  .procedure-process {
    padding: 30px 12px;
  }

  .procedure-process-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .procedure-process-steps {
    gap: 30px;
  }

  .procedure-process-steps-step {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-radius: 4px;
  }

  .procedure-process-steps-step-number {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .procedure-process-steps-step-content-title {
    font-size: 18px;
    padding-bottom: 8px;
  }

  .procedure-process-steps-step-content-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .procedure-process-steps-step-content-policylist-item {
    padding: 5px 0 5px 16px;
    font-size: 14px;
  }

  .procedure-process-steps-step-content-policylist-item:before {
    font-size: 16px;
    top: 4px;
  }

  .procedure-process-steps-step-content-image-caption {
    margin-top: -5px;
    font-size: 12px;
  }
}
