body {
  margin: 0;
  background: #ededed;
  font-family:
    "Microsoft YaHei", sans-serif;
  color: #2b2b2b;
}

/* 整体容器 */
.page {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  padding: 16px 15px 80px;
  box-sizing: border-box;
}

/* 标题 */
.title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

/* 作者栏 */
.author {
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.author-info {
  font-size: 15px;
  color: #666;
  line-height: 1.2;
}

.meta {
  font-size: 15px;
  color: #999;
  margin-top: 2px;
}

/* 正文 */
.content {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.75;
  color: #2b2b2b;
}

.content p {
  margin: 10px 0;
}

/* 图片 */
.content img {
  width: 100%;
  border-radius: 6px;
  margin: 10px 0;
}

/* 强调标题（红色步骤） */
.step {
  color: #d93025;
  font-weight: 600;
}

/* 信息栏（微信风） */
.info-bar {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #999;
  margin-top: 18px;
  padding-top: 10px;
}

/* 评论区（微信风格简化） */
.comments {
  margin-top: 20px;
  border-top: 10px solid #eee;
  padding-top: 10px;
}

.comment-title {
  font-size: 14px;
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.comment {
  padding: 10px 0;
}

.comment .name {
  font-size: 13px;
  color: #576b95;
}

.comment .text {
  font-size: 14px;
  color: #333;
  margin-top: 2px;
}

.comment .like {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* ===== 底部悬浮关注条 ===== */
.follow-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  box-sizing: border-box;
  max-width: 420px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.follow-left {
  display: flex;
  align-items: center;
}

.follow-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ddd;
  margin-right: 8px;
}

.follow-text {
  font-size: 13px;
  line-height: 1.2;
}

.follow-text span {
  background: #07c160;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  margin-left: 5px;
}

.follow-btn {
  background: #07c160;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
}

.small {
  font-size: 11px;
  color: #999;
}
.span-title {
  margin-right: 5px;
}
.span-date {
  color: #0000004d;
}
.span-ting,.c {
  color: #576b95;
}
.author-info2 {
  margin: 7px 7px 7px 0;
  display: flex;
}
.h1 {
  font-size: 20px;
  margin: 10px 0;
}
.txt {
  line-height: 24px;
}
.txtli {
  margin: 3px 0 !important;
}
.line {
  height: 5px;
  background: gray;
}
.input-box {
  background: #f2f2f2;
  padding: 0 10px 0 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.input-text {
  padding: 12px 5px;
  box-sizing: border-box;
  border: none;
  background: none;
  flex: 1;
  font-size: 15px;
}
.input-text:focus {
  outline: none;
}
.like-img {
  width: 50px;
}

/* 评论容器 */
.comment-container {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}

/* 评论头部（头像+昵称+时间地点+回复+点赞） */
.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 头像 */
.avatar {
  flex-shrink: 0;
}
.avatar img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

/* 昵称 */
.nickname {
  font-size: 14px;
  color: #666;
  position: relative;
  white-space: nowrap;
}
.nickname::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
}

/* 地点和时间 */
.meta-info {
  font-size: 14px;
  color: #999;
  margin-left: 8px;
}

/* 回复和点赞区域 */
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.reply-btn {
  font-size: 14px;
  color: #999;
}
.like-section {
  display: flex;
  align-items: center;
  gap: 8px;
}
.like-count {
  font-size: 14px;
  color: #999;
}
.like-icon{
    height: 20px;
}
.like-icon img {
  width: 20px;
  height: 20px;
  transform: translateY(1px);
}

/* 评论内容 */
.comment-content {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-left: 39px; /* 对齐头像右侧 */
}

.bottom-line {
  display: block;
  margin: 10px auto;
}
.txt-img {
  max-width: 100%;
}
.bottom-logo{
    width: 32px;
    height: 32px;
}
.icon-top img{
    width: 30px;
    display: block;
    margin: 0 auto;
}
.icon-bottom{
    font-size: 16px;
}
.bottom-right-box
{
    display: flex;

}
.bottom-right-box>div{
        margin: 0 10px;
        text-align: center;

}
.span-ting{
    display: flex;
    align-items: center;
}
.span-ting img{
    vertical-align: middle;
}
.time-span{
  font-weight: bold;
  font-size: 18px;
}