/* プライバシーポリシーページ专用样式 - 极简扁平硬朗风格 (4px版) - 字体放大版 */
body {
  background-color: #f7f9fc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  margin: 0;
  padding: 0;
}

/* 外层容器 */
.privacy-container {
  max-width: 900px;
  margin: 50px auto;
  background-color: #ffffff;
  border-radius: 4px; /* 统一 4px 圆角 */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e1e8ed;
  padding: 40px;
  box-sizing: border-box;
}

/* 头部 */
.privacy-header {
  padding-bottom: 25px;
  border-bottom: 1px solid #edf2f7;
  text-align: center;
  margin-bottom: 30px;
}

.privacy-header h1 {
  color: #0f294d; /* 统一使用首页深蓝黑色 */
  font-size: 26px; /* 放大至 26px */
  font-weight: 700;
  margin: 0;
}

.privacy-header h1::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background-color: #2563eb; /* 首页标准蓝 */
  margin: 12px auto 0;
  border-radius: 2px;
}

.update-date {
  color: #718096;
  font-size: 14.5px; /* 放大至 14.5px */
  margin-top: 10px;
  display: block;
}

.privacy-content {
  padding: 0;
}

/* 前言引导框：淡蓝背景 + 蓝色指示条 */
.privacy-intro {
  margin-bottom: 35px;
  padding: 20px;
  background-color: #f0f5ff; /* 浅淡蓝 */
  border-radius: 0 4px 4px 0;
  border-left: 3px solid #2563eb; /* 标准蓝 */
  border-top: 1px solid #dce6f7;
  border-right: 1px solid #dce6f7;
  border-bottom: 1px solid #dce6f7;
}

.privacy-intro p {
  margin: 0;
  line-height: 1.7;
  color: #4a5568;
  font-size: 15px; /* 放大至 15px */
}

/* 条款小节 */
.privacy-section {
  margin-bottom: 35px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

/* 条款条目大标题：左侧竖向蓝色指示条，替代突兀的底部分割线 */
.privacy-section h2 {
  color: #0f294d;
  font-size: 18px; /* 放大至 18px */
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 3px solid #2563eb; /* 竖向装饰线 */
  border-bottom: none; /* 去除生硬底线 */
  font-weight: 700;
  line-height: 1.3;
}

.privacy-clause {
  padding-left: 12px;
}

.privacy-clause p {
  margin-bottom: 12px;
  line-height: 1.65;
  color: #4a5568;
  font-size: 15px; /* 放大至 15px */
}

.privacy-clause p:last-child {
  margin-bottom: 0;
}

/* 制定公司信息提示框 */
.company-info {
  background-color: #f8fafc;
  padding: 24px;
  border-radius: 4px;
  margin: 35px 0;
  border-left: 3px solid #2563eb;
  border-top: 1px solid #edf2f7;
  border-right: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.company-info p {
  margin: 0 0 10px 0;
  font-size: 15px; /* 放大至 15px */
  color: #4a5568;
}

.company-info p:last-of-type {
  margin-bottom: 0;
}

.contact-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}

.contact-info h3 {
  color: #0f294d;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px; /* 放大至 16px */
  font-weight: 700;
}

.contact-info p {
  font-size: 14.5px; /* 放大至 14.5px */
  color: #4a5568;
  line-height: 1.65;
}

/* 表格小节 */
.table-section {
  margin: 24px 0;
}

.table-section h3 {
  color: #0f294d;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px; /* 放大至 16px */
  font-weight: 700;
}

/* 极简表格样式 */
.info-table,
.contact-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #edf2f7;
  border-radius: 4px; /* 统一 4px */
  overflow: hidden;
  margin-bottom: 20px;
}

.table-row,
.contact-row {
  display: table-row;
}

.table-header {
  font-weight: 700;
  background-color: #f8fafc;
}

.table-header .table-cell {
  background-color: #f8fafc;
  color: #2d3748;
}

.table-cell,
.contact-cell {
  display: table-cell;
  padding: 14px 16px;
  border-bottom: 1px solid #edf2f7;
  border-right: 1px solid #edf2f7;
  vertical-align: top;
  font-size: 14.5px; /* 放大至 14.5px */
  line-height: 1.6;
  color: #4a5568;
  box-sizing: border-box;
}

.table-cell:last-child,
.contact-cell:last-child {
  border-right: none;
}

.table-row:last-child .table-cell,
.contact-row:last-child .contact-cell {
  border-bottom: none;
}

/* 第一列（表头列）背景突出 */
.table-cell:first-child,
.contact-header {
  width: 30%;
  background-color: #f8fafc;
  font-weight: 700;
  color: #2d3748;
}

.contact-header {
  width: 25%;
}

.table-note {
  font-size: 13.5px; /* 放大至 13.5px */
  color: #718096;
  font-style: italic;
  margin-top: 6px;
}

/* 国家政策区域样式 */
.country-section {
  margin: 20px 0;
  padding: 20px;
  background-color: #f8fafc;
  border: 1px solid #edf2f7;
  border-left: 3px solid #cbd5e0; /* 灰蓝色左侧指示条 */
  border-radius: 4px; /* 统一 4px */
}

.country-section h3 {
  color: #0f294d;
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 16px; /* 放大至 16px */
  font-weight: 700;
}

.subtitle {
  font-size: 13.5px; /* 放大至 13.5px */
  color: #718096;
  margin-bottom: 14px;
  font-style: normal; /* 取消突兀的斜体，改为常规字形 */
  line-height: 1.45;
}

/* 国家列表段落：渲染为独立白色卡片盒，打破“文字墙”感官 */
.country-section p[data-i18n*="list"],
.country-section p:not(.subtitle):not(.reference) {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 16px;
  color: #4a5568;
  font-size: 14.5px; /* 放大至 14.5px */
  line-height: 1.7;
  letter-spacing: 0.1px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.reference {
  font-size: 13.5px; /* 放大至 13.5px */
  color: #718096;
  margin-top: 10px;
  display: block;
}

.reference a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
  margin: 0 4px;
}

.reference a:hover {
  color: #0052cc;
  text-decoration: underline;
}

/* 底部联系板块 */
.contact-section {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #edf2f7;
}

.contact-section h2 {
  color: #0f294d;
  font-size: 18px; /* 放大至 18px */
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}

/* 响应式样式 */
@media screen and (max-width: 767px) {
  .privacy-container {
    margin: 20px 12px;
    padding: 24px 16px;
    border-radius: 4px;
  }
  
  .privacy-header {
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
  
  .privacy-header h1 {
    font-size: 22px;
  }
  
  .privacy-content {
    padding: 0;
  }
  
  .privacy-section h2 {
    font-size: 17px;
    padding-left: 8px;
  }
  
  .privacy-clause {
    padding-left: 8px;
  }
  
  .info-table,
  .contact-table {
    display: block;
    border: none;
    border-radius: 0;
  }
  
  .table-row,
  .contact-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    border: 1px solid #edf2f7;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .table-cell,
  .contact-cell {
    display: block;
    width: 100% !important;
    border-right: none;
    border-bottom: 1px solid #edf2f7;
    padding: 12px;
    font-size: 14px;
  }
  
  .table-cell:last-child,
  .contact-cell:last-child {
    border-bottom: none;
  }
  
  .table-header {
    display: none; /* 移动端隐藏表头行 */
  }
}