   body {
            font-family: "Microsoft YaHei", sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f9f9f9;
            color: #333;
        }
        h1 {
            text-align: center;
            font-size: 2em;
            margin-bottom: 30px;
            color: #333;
        }
        h2 {
            text-align: center;
            padding-bottom: 10px;
            color: #333;
            margin: 40px 0 20px;
            border-bottom: 1px solid #ddd;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        table {
            border-collapse: collapse;
            width: 100%;
            margin-bottom: 30px;
        }
        td {
            border: 0px solid #999;
            padding: 8px 10px;
            vertical-align: middle;
        }
        .left-col, .right-col {
            width: 50%;
            text-align: left;
        }

        .entry {
            display: flex;
            align-items: center;
            width: 100%;
        }
        .title {
            white-space: nowrap;
            padding-right: 0.5em;
        }
        .dots {
            flex: 1;
            border-bottom: 1px dotted #555;
            margin: 0 6px;
        }
        .page {
            white-space: nowrap;
            padding-left: 0.5em;
            font-family: "Courier", monospace;
            font-size: 0.95em;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            display: block;
        }
        a:hover {
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .title {
                font-size: 0.9em;
            }
            .left-col, .right-col {
                width: 100%;
            }
            table tr {
                display: flex;
                flex-direction: column;
            }
        }

	
.scroll-link, .preface-link {
  display: inline-block; /* 确保元素在一行内显示 */
  padding-right: 5px; /* 给第二个链接前留一点空白 */
  text-decoration: none; /* 如果需要移除下划线可以取消注释 */
}

.scroll-link {
  padding-left: 5px; /* 给第一个链接和这个链接之间增加一点空隙 */
}


/* 在 <a> 上显示黄色小三角警示（仅图标，不干扰文字） */
a.suspect {
  position: relative;
  text-decoration: none; /* 确保下划线不会被图标干扰 */
}

a.suspect::after {
  content: "⚠️";
  position: absolute;
  top: 0;
  right: "-16px"; /* 图标放在链接文字右侧一点，避免重叠 */
  font-size: 0.8em;
  color: #d9a000; /* 醒目的黄色 */
  opacity: 0.8;
  pointer-events: none; /* 确保点击区域不受影响 */
}

/* 移动端微调 */
@media (max-width: 600px) {
  a.suspect::after {
    right: -14px;
    font-size: 0.75em;
  }
}

