:root {
  --primary-color: #e74c3c;  /* 主色调（红色系） */
  --text-color: #2c3e50;
  --border-color: #ecf0f1;
}

.article-list {
    font-size: 14px;
  color: #555;
  padding: 0.5em 1em;
  background-color: #f9f9f9;
  margin-bottom: 1em;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  border: 1px solid var(--border-color);
}

.article-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease;
  border: 1px solid var(--border-color);
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.article-content {
  padding: 1.5rem 2rem;
}

.article-title {
  color: var(--text-color);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.article-desc {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.article-date {
  color: #95a5a6;
  font-size: 0.9rem;
}
.article-title { 
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.article-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.article-link.article-title:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .article-content {
    padding: 1.2rem;
  }
  
  .article-title {
    font-size: 1.2rem;
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

/* 文章内容样式 */
.content p {
    font-family: 'Arial', sans-serif; /* 设置字体 */
    font-size: 16px; /* 字体大小 */
    line-height: 1.6; /* 行高，增加可读性 */
    color: #333; /* 文字颜色 */
    margin-bottom: 1.2em; /* 段落底部外边距 */
}

/* 首行缩进 */
.content p:first-child {
    text-indent: 0;
}

.content p + p {
    text-indent: 2em; /* 缩进除首段之外的所有段落 */
}

/* 链接样式 */
.content a {
    color: #007BFF; /* 链接颜色 */
    text-decoration: none; /* 去掉下划线 */
}
.content a:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
}

/* 强调文本 */
.content em, 
.content i {
    font-style: italic; /* 斜体 */
    color: #555; /* 可选：更改强调文本的颜色 */
}

/* 加粗文本 */
.content strong, 
.content b {
    font-weight: bold; /* 加粗 */
    color: #333; /* 可选：更改加粗文本的颜色 */
}

/* 引用块 */
.content blockquote {
    background-color: #f9f9f9; /* 背景颜色 */
    border-left: 4px solid #ccc; /* 左边框 */
    padding: 10px 20px; /* 内边距 */
    margin: 1.2em 0; /* 外边距 */
    font-style: italic; /* 斜体 */
    color: #666; /* 文本颜色 */
}

/* meta-info 样式 */
.meta-info {
    font-size: 12px; /* 字体大小 */
    color: #888; /* 浅灰色文字颜色 */
    margin-top: 1em; /* 与上方内容的间距 */
    margin-bottom: 1em; /* 与下方内容的间距 */
    text-align: left; /* 文字左对齐 */
	padding-left:3em;
}

/* 可选：为发布日期和作者添加一些间距 */
.meta-info span + span {
    margin-left: 1em; /* 在每个span元素之间添加间距 */
}

/* 面包屑容器样式 */
.position {
    font-size: 14px; /* 字体大小 */
    color: #555; /* 文字颜色 */
    padding: 0.5em 1em; /* 内边距 */
    background-color: #f9f9f9; /* 背景颜色 */ 
    margin-bottom: 1em; /* 与下方内容的间距 */
	
	background: #fff;
	  border-radius: 12px;
	  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); 
	  transition: transform 0.2s ease;
	  border: 1px solid var(--border-color);
  
}

/* 链接样式 */
.position a {
    color: #007BFF; /* 链接颜色 */
    text-decoration: none; /* 去掉下划线 */
    margin: 0 0.5em; /* 链接之间的间距 */
}

/* 鼠标悬停时的链接样式 */
.position a:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
}

/* 分隔符样式 */
.position::before {
    content: ''; /* 确保伪元素存在 */
}

/* 自定义分隔符样式 */
.position a + a::before {
    content: '>>'; /* 自定义分隔符 */
    color: #ccc; /* 分隔符颜色 */
    margin: 0 0.5em; /* 分隔符两侧的间距 */
}