/* 自定义样式文件 */
/* docs/.vuepress/public/css/custom.css */

/* 调整全局样式 */
body {
  line-height: 1.8;
}

/* 调整内容区域宽度，提高可读性 */
.theme-default-content:not(.custom) {
  max-width: 900px !important;
}

/* 优化段落间距 */
p {
  margin-bottom: 1.2em;
}

/* 优化引用块样式（用于中文翻译） */
blockquote {
  border-left: 4px solid #42b983;
  background-color: #f8f8f8;
  padding: 12px 20px;
  margin: 16px 0;
  border-radius: 0 4px 4px 0;
  
  p {
    margin-bottom: 0.8em;
    color: #333;
  }
  
  p:last-child {
    margin-bottom: 0;
  }
}

/* 优化标题样式 */
h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  font-weight: 600;
}

/* 优化图片样式 */
img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
  border-radius: 4px;
}

/* 优化代码块样式 */
pre {
  border-radius: 4px;
  margin: 16px 0;
}

/* 优化表格样式 */
table {
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
  
  th, td {
    padding: 8px 12px;
    border: 1px solid #ddd;
  }
  
  th {
    background-color: #f5f5f5;
    font-weight: 600;
  }
}