/**
 * @file
 * 火彩商城 - 销售政策页面样式
 * 适用于节点43：销售政策
 */

/* ========== 页面容器 ========== */
.layout-sales-policy-page {
  background: #F5F5F7;
}

/* ========== 政策容器 ========== */
.sales-policy-container {
  padding: 24px 16px 100px;
  background: #F5F5F7;
  min-height: calc(100vh - 60px);
}

.sales-policy-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* ========== Hero 区域 ========== */
.sales-policy-content-wrapper .hero-section {
  background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 32px;
  color: white;
}

.sales-policy-content-wrapper .hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.sales-policy-content-wrapper .hero-subtitle {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 400;
}

/* ========== 内容卡片 ========== */
.sales-policy-content-wrapper .content-card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ========== 章节标题 ========== */
.sales-policy-content-wrapper .section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1D1D1F;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.sales-policy-content-wrapper .section-title:first-of-type {
  margin-top: 0;
}

/* ========== 段落文本 ========== */
.sales-policy-content-wrapper .policy-content {
  font-size: 15px;
  color: #6E6E73;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ========== 列表 ========== */
.sales-policy-content-wrapper .policy-list {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.sales-policy-content-wrapper .policy-list li {
  font-size: 15px;
  color: #6E6E73;
  margin-bottom: 12px;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.sales-policy-content-wrapper .policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0066CC;
  font-weight: 700;
  font-size: 18px;
}

/* ========== 流程步骤 ========== */
.sales-policy-content-wrapper .process-steps {
  display: grid;
  gap: 16px;
  margin: 20px 0;
}

.sales-policy-content-wrapper .process-step {
  display: flex;
  gap: 20px;
  background: #F5F7FF;
  border-radius: 10px;
  padding: 20px;
  align-items: flex-start;
}

.sales-policy-content-wrapper .step-number {
  width: 32px;
  height: 32px;
  background: #0066CC;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.sales-policy-content-wrapper .step-content h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #1D1D1F;
}

.sales-policy-content-wrapper .step-content p {
  margin: 0;
  font-size: 14px;
  color: #6E6E73;
}

/* ========== 信息卡片 ========== */
.sales-policy-content-wrapper .info-box {
  background: #FFF9E6;
  border-left: 4px solid #FF9800;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}

.sales-policy-content-wrapper .info-title {
  font-size: 16px;
  font-weight: 600;
  color: #FF9800;
  margin-bottom: 8px;
}

.sales-policy-content-wrapper .info-text {
  font-size: 14px;
  color: #6E6E73;
  margin: 0;
  line-height: 1.6;
}

/* ========== 警告框 ========== */
.sales-policy-content-wrapper .warning-box {
  background: #FFF3CD;
  border-left: 4px solid #FFA000;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}

.sales-policy-content-wrapper .warning-text {
  font-size: 14px;
  color: #8B5700;
  margin: 0;
  line-height: 1.6;
}

/* ========== 平板和桌面端样式 ========== */
@media (min-width: 768px) {
  .sales-policy-container {
    padding: 40px 0 100px;
  }

  .sales-policy-content-wrapper .content-card {
    padding: 40px;
  }

  .sales-policy-content-wrapper .hero-title {
    font-size: 36px;
  }

  .sales-policy-content-wrapper .section-title {
    font-size: 22px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
