html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

/* 防止内容溢出 */
.asciidoc-content {
  max-width: none !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.asciidoc-content * {
  max-width: none !important;
}

/* AsciiDoc 样式 */
.sect1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.sect2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.sect3 {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.sect4 {
  margin-top: 0.8rem;
  margin-bottom: 0.6rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2rem;
  color: #2c3e50;
  border-bottom: 2px solid #C6272A;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  color: #34495e;
}

h3 {
  font-size: 1.25rem;
  color: #34495e;
}

h4 {
  font-size: 1.1rem;
  color: #34495e;
}

/* 表格样式 */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
  table-layout: fixed;
  word-wrap: break-word;
}

table th,
table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}

table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
}

table tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* 列表样式 */
ul, ol {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

li {
  margin: 0.25rem 0;
}

/* 代码样式 */
code {
  background-color: #f1f2f6;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9em;
}

pre {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  border-left: 4px solid #C6272A;
}

/* 段落样式 */
p {
  margin: 0.8rem 0;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* 链接样式 */
a {
  color: #C6272A;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 引用样式 */
blockquote {
  border-left: 4px solid #C6272A;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
  font-style: italic;
} 