/* 隐私政策 / 服务条款 页面样式：还原 docx 的标题层级、段落间距与项目符号排版 */
html, body{
  width: 100%;
  overflow-x: hidden;
}
body{
  background-color: #f0f2f5;
}
img{
  max-width: 100%;
}

/* 顶部导航：与站点首页导航保持一致的视觉 */
.policy-nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 100px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  z-index: 999;
}
.policy-nav a{
  color: #fff;
}
.policy-nav a:hover{
  color: #FFB833;
}

/* 正文纸张区域 */
.policy-page{
  padding: 110px 20px 60px;
}
.policy-paper{
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 70px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  color: #1D1D1D;
  font-family: 'MicrosoftYaHei', 'Microsoft YaHei', Arial, sans-serif;
  font-size: 11pt;
  line-height: 1.5;
  word-break: break-word;
}

/* 标题层级与字号、颜色均取自文档样式定义 */
.policy-paper h1{
  font-size: 20pt;
  font-weight: bold;
  color: #0F4761;
  margin: 18pt 0 4pt;
}
.policy-paper h2{
  font-size: 16pt;
  font-weight: bold;
  color: #0F4761;
  margin: 8pt 0 4pt;
}
.policy-paper h3{
  font-size: 14pt;
  font-weight: bold;
  color: #0F4761;
  margin: 8pt 0 4pt;
}
.policy-paper p{
  margin: 9pt 0;
}
.policy-paper ul{
  margin: 9pt 0;
  padding-left: 24pt;
}
.policy-paper li{
  list-style: disc outside;
  margin: 1.8pt 0;
}

/* 页脚 */
.policy-footer{
  padding: 0 20px 40px;
  color: #7a7a7a;
  font-size: 14px;
  text-align: center;
}
.policy-footer a{
  color: #7171F8;
}

@media screen and (max-width: 768px){
  .policy-nav{
    padding: 12px 16px;
    font-size: 14px;
  }
  .policy-page{
    padding: 80px 12px 40px;
  }
  .policy-paper{
    padding: 32px 20px;
  }
  .policy-paper h1{
    font-size: 18pt;
  }
  .policy-paper h2{
    font-size: 15pt;
  }
  .policy-paper h3{
    font-size: 13pt;
  }
  .policy-paper ul{
    padding-left: 18pt;
  }
}
