body {
    font-family: "Microsoft YaHei", sans-serif;
    margin: 0;
    background: #f8f9fa;
    color: #444;
    line-height: 1.6;
  }
  
  .article-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .article-title {
    font-size: 28px;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 15px;
  }
  
  .article-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .article-content {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
  }
  
  .article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
  }
  
  .article-footer {
    margin-top: 30px;
    text-align: right;
  }
  
  .article-footer a {
    color: #0078d4;
    text-decoration: none;
    font-weight: 600;
  }
  
  .article-footer a:hover {
    color: #0086ef;
  }

  /* 月读分享页面样式 */
.reading-container {
  max-width: 1160px;
  margin: 30px auto;
  padding: 0 25px;
}

.section-title {
  font-size: 28px;
  color: #0078d4;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  border-radius: 3px;
}

.reading-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.reading-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.reading-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reading-card h3 {
  margin-top: 0;
  color: #0078d4;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.reading-meta {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.reading-excerpt {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

.reading-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.reading-tags {
  display: flex;
  gap: 8px;
}

.reading-tag {
  background: #f0f7ff;
  color: #0078d4;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
}