html,
body {
  padding: 0;
  margin: 0;
}
/* 整体容器样式 */
.privacy-content {
  margin: 0 auto;
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* 标题样式 */
.privacy-content h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  /* text-align: center; */
}

.privacy-content h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.mb{
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.privacy-content .not-mb{
  border-bottom: none;
}

.privacy-content h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 15px;
}

/* 段落样式 */
.privacy-content p {
  margin-bottom: 15px;
}

/* 列表样式 */
.privacy-content ul,
.privacy-content ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.privacy-content li {
  margin-bottom: 10px;
}

.li-bg{
  display: inline;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 14px;
  line-height: 1.7;
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 2px 4px;
  white-space: normal;
  overflow-wrap: anywhere;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  
}

/* 表格样式 */
.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left; 
}

.privacy-content th,
.privacy-content td {
  padding: 12px;
  border: 1px solid #eee;
}

.privacy-content th {
  font-weight: bold;
}

/* 强调文本样式 */
.privacy-content strong {
  font-weight: bold;
}

/* 最后更新时间样式 */
.privacy-content .last-updated {
  color: #999;
  font-size: 12px;
  margin-bottom: 30px;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
  .privacy-content {
    padding: 20px 15px;
    box-sizing: border-box;
  }

  .table-content{
    max-width: 100%;
    overflow-y: scroll;
  }

  .table-content table{
    width: 1200px;
    text-align: left; 
  }

  .privacy-content h1 {
    font-size: 20px;
  }

  .privacy-content h2 {
    font-size: 18px;
  }

  .privacy-content h3 {
    font-size: 16px;
  }
}