/* 文章详情页样式 */
.article-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
  margin-bottom: 0;
}

.article-header {
  margin-bottom: 25px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
}

.article-title {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  margin-bottom: 15px;
}

.article-meta {
  color: #999;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.article-date {
  display: inline-block;
}

.article-date i {
  margin-right: 5px;
}

.time-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -3px;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.article-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}

.share-box {
  display: flex;
  align-items: center;
}

.share-text {
  font-size: 14px;
  color: #666;
  margin-right: 15px;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.share-icon:hover {
  opacity: 0.8;
}

.share-icon.weixin {
  background-color: #2dc100;
}

.share-icon.weibo {
  background-color: #e6162d;
}

.share-icon.qq {
  background-color: #12b7f5;
}

.share-icon.link {
  background-color: #999;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .article-container {
    padding: 20px 15px;
    margin-top: -40px;
    margin-bottom: -40px;
  }
  
  .article-header {
    padding-bottom: 10px;
  }
  
  .article-title {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
  }
  
  .article-content {
    font-size: 15px;
  }
  
  .share-box {
    flex-wrap: wrap;
  }
  
  .share-text {
    margin-bottom: 10px;
    width: 100%;
  }
} 

/* 文章导航样式 */
.article-navigation {
  margin-top: 30px;
  border-top: 1px solid #eaeaea;
  padding-top: 30px;
}

.prev-next {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prev-article, .next-article {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.3s;
}

.prev-article:hover, .next-article:hover {
  color: #ca0c16;
  text-decoration: underline;
}

.prev-icon, .next-icon {
  width: 11px;
  height: 15px;
}

.prev-icon {
  margin-right: 10px;
}

.next-icon {
  margin-right: 10px;
}

/* 文章导航响应式样式 */
@media (max-width: 768px) {
  .article-navigation {
    margin-top: 20px;
    padding-top: 15px;
  }
  
  .prev-next {
    gap: 12px;
  }
  
  .prev-article, .next-article {
    font-size: 14px;
  }
  
  .prev-article span, .next-article span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 85%;
  }
} 