/**
 * @file
 * 火彩商城 - 隐私政策页面样式
 * 适用于节点1：隐私政策
 */

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

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

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

/* ========== 内容卡片 ========== */
.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);
}

/* ========== 页面标题 ========== */
.policy-content-wrapper .page-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1D1D1F;
  line-height: 1.3;
}

.policy-content-wrapper .update-date {
  font-size: 14px;
  color: #6E6E73;
  margin-bottom: 24px;
}

/* ========== 章节标题 ========== */
.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);
}

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

/* ========== 子标题 ========== */
.policy-content-wrapper .subsection-title {
  font-size: 16px;
  font-weight: 600;
  color: #1D1D1F;
  margin: 20px 0 12px;
}

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

/* ========== 列表 ========== */
.policy-content-wrapper .policy-list {
  margin: 12px 0;
  padding-left: 24px;
  list-style-type: disc;
}

.policy-content-wrapper .policy-list li {
  font-size: 15px;
  color: #6E6E73;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ========== 强调文本 ========== */
.policy-content-wrapper .highlight {
  color: #0066CC;
  font-weight: 600;
}

/* ========== 联系信息卡片 ========== */
.policy-content-wrapper .contact-card {
  background: #F0F7FF;
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-top: 24px;
}

.policy-content-wrapper .contact-title {
  font-size: 16px;
  font-weight: 600;
  color: #0066CC;
  margin-bottom: 8px;
}

.policy-content-wrapper .contact-text {
  font-size: 14px;
  color: #6E6E73;
  line-height: 1.8;
}

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

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

  .policy-content-wrapper .page-title {
    font-size: 32px;
  }

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