/* ===== shouhou页面修复：主题默认wrap为flex导致标题与内容并排 ===== */
.page-banner .wrap,
.process-section .wrap,
.sec-light .wrap,
.sec-white .wrap,
.sec-warranty .wrap,
.sec-dark .wrap {
  display: block !important;
}

/* 全程服务 - RISING CRANE 售后保障页 - WordPress版 */
/* k.qizhongji.com 配色：#1a3a5c深空蓝 + #e67e22橙色 */

/* ===== 页面容器 ===== */
.kekao-support {
  padding-top: 20px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Banner ===== */
.page-banner {
  background: linear-gradient(135deg, #e8f0fe 0%, #d4e4f7 30%, #c8dcf2 60%, #b8d0ed 100%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner .banner-max { max-width: 700px; }
.page-banner .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,58,92,0.9);
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.page-banner h1 {
  font-size: 38px;
  color: #1a3a5c;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
}
.page-banner h1 .grad-orange {
  background: linear-gradient(135deg, #e67e22, #d35400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-banner p {
  font-size: 16px;
  color: #555;
  line-height: 2;
  max-width: 520px;
}

/* ===== Section 通用 ===== */
.sec-white { padding: 70px 0; background: #fff; }
.sec-light { padding: 60px 0; background: linear-gradient(180deg, #f8fbff, #eef4fa); }
.sec-warranty { padding: 60px 0; background: linear-gradient(180deg, #e8f4fe, #d6eaf8); }
.sec-dark {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f2a44, #1a3a5c);
  color: #fff;
}
.sec-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  color: #1a3a5c;
}
.sec-dark .sec-title { color: #fff; }
.sec-sub {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-bottom: 35px;
}
.sec-dark .sec-sub { color: rgba(255,255,255,0.7); }

/* ===== 服务流程（5步骤横向） ===== */
.process-section { padding: 70px 0; background: #fff; }
.process-grid {
  display: flex;
  justify-content: space-between;
  gap: 0;
  position: relative;
  margin-bottom: 50px;
}
.process-line {
  position: absolute;
  top: 35px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #2980b9, #e67e22, #2980b9);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}
.process-step .step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 12px;
}
.process-step .step-num.blue {
  background: linear-gradient(135deg, #2980b9, #1a3a5c);
  box-shadow: 0 4px 15px rgba(41,128,185,0.3);
}
.process-step .step-num.orange {
  background: linear-gradient(135deg, #e67e22, #d35400);
  box-shadow: 0 4px 15px rgba(230,126,34,0.3);
}
.process-step h4 {
  font-size: 15px;
  color: #1a3a5c;
  font-weight: 700;
  margin-bottom: 5px;
}
.process-step p {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 150px;
}

/* ===== 服务承诺 ===== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.promise-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid #eef2f7;
  box-shadow: 0 2px 8px rgba(26,58,92,0.03);
  transition: transform 0.3s;
}
.promise-card:hover { transform: translateY(-4px); }
.promise-card .p-icon { font-size: 36px; }
.promise-card h4 {
  font-size: 16px;
  color: #1a3a5c;
  font-weight: 700;
  margin: 12px 0 8px;
}
.promise-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.cta-wrap { text-align: center; margin-top: 35px; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: #fff;
  padding: 14px 48px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(230,126,34,0.35);
  transition: all 0.3s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,126,34,0.45);
}
.cta-btn-sm {
  padding: 12px 36px;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(230,126,34,0.3);
}

/* ===== 售后服务网络 ===== */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.network-card {
  background: #f8fbff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #eef2f7;
  box-shadow: 0 2px 8px rgba(26,58,92,0.04);
  transition: transform 0.2s;
  cursor: default;
}
.network-card:hover { transform: translateY(-4px); }
.network-card .net-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f0fe, #d4e4f7);
  margin-bottom: 12px;
  font-size: 28px;
}
.network-card h4 {
  font-size: 17px;
  color: #1a3a5c;
  font-weight: 700;
  margin-bottom: 6px;
}
.network-card p {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
  line-height: 1.7;
}
.network-card .resp-tag {
  display: inline-block;
  background: rgba(230,126,34,0.1);
  color: #e67e22;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== 质保政策 ===== */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.warranty-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(26,58,92,0.05);
}
.warranty-card .w-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.warranty-card .w-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.warranty-card .w-icon.blue {
  background: linear-gradient(135deg, #2980b9, #1a3a5c);
}
.warranty-card .w-icon.orange {
  background: linear-gradient(135deg, #e67e22, #d35400);
}
.warranty-card h4 {
  font-size: 16px;
  color: #1a3a5c;
  font-weight: 700;
  margin: 0;
}
.warranty-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ===== 售后服务案例 ===== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-card {
  background: #f8fbff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  box-shadow: 0 2px 8px rgba(26,58,92,0.04);
}
.case-card .case-head {
  background: linear-gradient(135deg, #2980b9, #1a3a5c);
  padding: 18px 22px;
  color: #fff;
}
.case-card .case-head .ch-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-card .case-head .ch-icon { font-size: 24px; }
.case-card .case-head h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.case-card .case-body { padding: 22px; }
.case-card .case-body p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}
.case-card .case-body p strong { color: #1a3a5c; }
.case-card .case-body p:last-child { margin-bottom: 0; }
.case-card .quote-box {
  background: linear-gradient(135deg, #fef8f0, #fdf0e0);
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid #e67e22;
}
.case-card .quote-box .q-text {
  font-size: 12px;
  color: #1a3a5c;
  margin: 0;
  font-style: italic;
}
.case-card .quote-box .q-author {
  font-size: 11px;
  color: #888;
  margin: 6px 0 0;
  text-align: right;
}

/* ===== 客户培训服务 ===== */
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.training-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s;
  cursor: default;
}
.training-card:hover { transform: translateY(-4px); }
.training-card .t-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(230,126,34,0.2);
  margin-bottom: 16px;
  font-size: 32px;
}
.training-card h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.training-card .t-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 12px;
}
.training-card .t-tags span {
  background: rgba(255,255,255,0.1);
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}
.training-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: left;
}
.training-card .t-duration {
  display: inline-block;
  background: rgba(230,126,34,0.2);
  color: #e67e22;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.train-cta {
  text-align: center;
  margin-top: 35px;
}
.train-cta .cta-btn {
  box-shadow: 0 6px 20px rgba(230,126,34,0.4);
}

/* ===== 响应式 ===== */
@media (max-width: 991px) {
  .page-banner h1 { font-size: 30px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .warranty-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .training-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step p { max-width: 120px; font-size: 11px; }
}
@media (max-width: 767px) {
  .page-banner { padding: 40px 0 50px; }
  .page-banner h1 { font-size: 24px; }
  .sec-title { font-size: 22px; }
  .promise-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .process-grid { flex-direction: column; gap: 20px; }
  .process-line { display: none; }
  .process-step { display: flex; align-items: center; gap: 16px; text-align: left; }
  .process-step .step-num { margin: 0; flex-shrink: 0; width: 50px; height: 50px; font-size: 16px; }
  .process-step p { max-width: none; margin: 0; }
  .cta-btn { padding: 12px 32px; font-size: 14px; }
  .warranty-grid { grid-template-columns: 1fr; }
}
