.webagree {
  padding: 1px 15px 108px 15px;
  background: #1a1926;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
}
.prohibited-list {
  list-style-type: decimal; /* 数字序号 */
  list-style-position: inside; /* 序号与内容一起缩进 */
  padding-left: 0; /* 取消默认缩进 */
}
.prohibited-list li {
  text-indent: -1em; /* 内容反向缩进，对齐序号 */
  padding-left: 1em; /* 保持内容缩进 */
  margin-bottom: 0.5em; /* 调整行间距 */
}

p {
  line-height: 20px;
  margin-bottom: 8px;
}

.h1 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
}

.h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.mt20 {
  margin-top: 20px;
}

.mb6 {
  margin-bottom: 6px;
}

.text-indent-1 {
  text-indent: -0.6em;
}

.email_label {
  color: #7960ff;
}

.bold {
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
}

body::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}

.webagree::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}

body {
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

a {
  color: #7960ff;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 12px;
}

/* 移动端表格滚动容器 */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
    width: 100%;
    max-width: 100%;
  }
  
  table tbody {
    display: block;
  }
  
  table tr {
    display: table;
    width: 100%;
    min-width: 600px; /* 确保表格最小宽度，触发滚动 */
    table-layout: fixed;
  }
  
  table td {
    display: table-cell;
    white-space: normal;
    word-wrap: break-word;
    min-width: 80px;
  }
  
  /* 第一行（表头）保持表格布局 */
  table tr:first-child {
    display: table;
    width: 100%;
    min-width: 600px;
    table-layout: fixed;
  }
  
  /* 数据类型列允许更宽 */
  table td:nth-child(4) {
    min-width: 200px;
    max-width: 400px;
  }
}

table th {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  padding: 10px 8px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

table td {
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  line-height: 18px;
  vertical-align: top;
}

table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

table tr:first-child {
  background: rgba(255, 255, 255, 0.1);
}

table a {
  color: #7960ff;
  word-break: break-all;
}
