@charset "utf-8";
html, body, h1, h2, h3, h4, h5, h6, div, dl, dt, dd, ul, ol, li, p, a, span, i, em, blockquote, pre, hr, figure, table, caption, th, td, form, fieldset, legend, input, button, textarea, menu {
	margin: 0;
	padding: 0;
}
header, footer, section, article, aside, nav, hgroup, address, figure, figcaption, menu, details {
	display: block;
}
body {
	font-family: "Microsoft YaHei";
	color: #333;
	line-height: 1;
	font-size: 14px;
}
.text-indent-2{
	text-indent: 2em;
}

.mainContent {
	max-width: 750px;
	margin: 0 auto;
	padding: 30px 15px;
}
/* .contentIn {
	padding: 30px 15px;
} */
/* Pandoc 输出的是 <h1>，没有 class="h1"；主标题用 .mainContent 下第一个 h1 */
.h1,
.mainContent > h1 {
	font-size: 20px;
	color: #000;
	line-height: 34px;
	text-align: center;
	width: 100%;
}
.contentIn h2 {
	font-size: 20px;
	color: #000;
	line-height: 34px;
	text-align: center;
}

.txtTop{
	padding-top: 15px;
	text-indent: 2em;
}
.txtTop txtTopIn{
	text-indent: 2em;
}
.txtTop p{
	font-size: 16px;
	color: #000;
	line-height: 24px;
	margin-top: 10px;
	text-align: justify;
}
.list-txt {
	padding-top: 15px;
}

.list-txt dt {
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 10px;
	color: #ff6307;
}
.list-txt  {
	line-height: 50px;
	padding-bottom: 10px;
}
.list-txt  h2 {
	font-weight: bold;
	line-height: 30px;
	padding-top: 10px;
}
.list-txt  h2.beforeCircle::before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	vertical-align: middle;
	margin-right: 12px;
	margin-left: 10px;
	background: #000;
	border-radius: 50%;
}
.list-txt  p {
	margin-bottom: 10px;
	line-height: 24px;
	text-indent: 2em;
	text-align: justify;
}

.list-txt  p.no_indent {
	text-indent: 0;
}
.list-txt dt::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-right: 20px;
	margin-left: 10px;
	background: #ff6307;
	border-radius: 50%;
}
.noneCircle dt::before{
	display: none;
}


.table-style1 {
	width: 100%;
    margin-bottom: 12px;
	border-collapse: collapse;
}

.table-style1 td, .table-style1 th {
  font-size: 12px;
  color: #666666;
  line-height: 1.5;
  border: 1px solid #aaa;
  padding: 8px 5px;
  text-align: center;
  word-break: break-all;
}

.table-style1 td a {
  color: #619fde;
  text-decoration: underline;
}

/* ================================================================
   手机端响应式：< 768px 时把表格换成"每行一张卡片"
   依赖列顺序：第三方名称 / 官方链接及联系方式 / 隐私协议链接 /
   使用场景 / 使用目的 / 信息类型 / 收集的具体个人信息 /
   需要申请的权限 / 权限申请目的 / 共享方式
   如果将来调整列顺序，下面的 td:nth-child(N)::before 标签要同步改。
   ================================================================ */
@media screen and (max-width: 768px) {
	.table-style1,
	.table-style1 tbody,
	.table-style1 tr,
	.table-style1 td {
		display: block;
		width: 100% !important;
		box-sizing: border-box;
	}

	.table-style1 {
		border: none;
		margin-bottom: 20px;
	}

	/* 第一行是表头（这份文档没用 <thead>，第一行 <tr> 即列名行），手机端隐藏，靠下面的 ::before 重新打标签 */
	.table-style1 tr:first-child {
		display: none;
	}

	/* 每行 = 一张卡片 */
	.table-style1 tr {
		margin-bottom: 10px;
		border: 1px solid #e0e0e0;
		border-radius: 6px;
		overflow: hidden;
		background: #fff;
	}

	/* 卡片里每个字段 */
	.table-style1 td {
		font-size: 13px;
		line-height: 1.5;
		color: #333;
		text-align: left;
		padding: 5px 10px;
		border: none;
		border-bottom: 1px solid #f0f0f0;
		word-break: normal;
		overflow-wrap: anywhere;
	}

	.table-style1 td:last-child {
		border-bottom: none;
	}

	/* 第一个 td（SDK 名称）当卡片标题：灰底做区分 */
	.table-style1 td:first-child {
		background: #f5f5f5;
		color: #111;
		font-size: 14px;
		padding: 7px 10px;
		border-bottom: 1px solid #e0e0e0;
	}

	/* 其余 9 个字段：标签和值写在同一行，用冒号隔开更紧凑 */
	.table-style1 td:nth-child(2)::before { content: "官方链接："; }
	.table-style1 td:nth-child(3)::before { content: "隐私协议："; }
	.table-style1 td:nth-child(4)::before { content: "使用场景："; }
	.table-style1 td:nth-child(5)::before { content: "使用目的："; }
	.table-style1 td:nth-child(6)::before { content: "信息类型："; }
	.table-style1 td:nth-child(7)::before { content: "收集信息："; }
	.table-style1 td:nth-child(8)::before { content: "申请权限："; }
	.table-style1 td:nth-child(9)::before { content: "权限目的："; }
	.table-style1 td:nth-child(10)::before { content: "共享方式："; }

	.table-style1 td:nth-child(n+2)::before {
		display: inline;
		color: #888;
		font-size: 13px;
		font-weight: bold;
	}

	/* 链接触控目标 */
	.table-style1 td a {
		display: inline-block;
		padding: 2px 0;
	}
}