/*
Theme Name: 精简文字主题
Theme URI:
Description: 手机端文章
Version: 1.0
Author:
Text Domain: wechat-style
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.75;
  padding-bottom: 40px;
}
a {
  color: #576b95;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em 0;
}

/* 文章容器 */
.container {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  padding: 20px 16px;
}

/* 文章标题 */
.post-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8em;
  color: #000000;
}

/* 作者时间信息 */
.post-meta {
  color: #888;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 22px;
  line-height: 20px;
  font-size: 15px;
}
.post-meta-time{margin: 0 10px;}
/* 文章正文*/
.post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.post-content p {
  margin-bottom: 1.2em;
  text-align: justify;
}
.post-content h2 {
  font-size: 1.25rem;
  margin: 1.6em 0 0.8em;
  font-weight: bold;
}
.post-content h3 {
  font-size: 1.15rem;
  margin: 1.4em 0 0.7em;
  font-weight: bold;
}
.post-content ul,
.post-content ol {
  padding-left: 1.6em;
  margin: 1em 0;
}
.post-content blockquote {
  border-left: 4px solid #d9d9d9;
  padding: 10px 14px;
  background: #f7f7f7;
  margin: 1.2em 0;
  color: #666;
}
.post-content pre,
.post-content code {
  background: #f6f6f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}