/* 半透明滚动条 */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 100, 100, 0.7) rgba(255, 255, 255, 0.2);
}
h1 {
  font-size: 24px; /* 你可以根据需要调整这个值 */
}
/* 针对 Webkit 浏览器 (Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
table {
  width: 100%; /* 可选：设置表格宽度 */
  border-collapse: collapse; /* 合并边框 */
}

table.props{
  width: 100%; /* 可选：设置表格宽度 */
  border-collapse: collapse; /* 合并边框 */
}

table th, table td {
  border: 1px solid #000; /* 设置单元格边框 */
  padding: 8px; /* 设置单元格内边距 */
  text-align: left; /* 设置文本对齐方式 */
}
table tr {
  border: 1px solid rgba(30, 30, 30, 0.2); /* 设置行边框 */
}

table th {
  background-color: #f2f2f2; /* 可选：设置表头背景色 */
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(30, 30, 30, 0.7);
}

/* 调整文档字体大小 */
body {
  font-size: 14px; /* 调整整体文档的字体大小 */
  font-family: "TT Norms Medium",sans-serif"
}
table.props th:nth-child(1),
table.props td:nth-child(1),
table.props th:nth-child(2),
table.props td:nth-child(2) {
  width: 200px; /* 根据需要调整第一列和第二列的宽度 */
}

