﻿/* Page styles for mianfei.html */

.cy-article-title  {
  margin: 0 0 10px;
  color: var(--cy-navy);
  font-size: 24px;
}

.cy-article-meta  {
  display: flex;
  gap: 14px;
  color: var(--cy-muted);
  font-size: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cy-border);
  margin-bottom: 18px;
}

.cy-comment-list  {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 154, 214, 0.08);
  margin-top: 16px;
}

.cy-comment-item  {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--cy-border);
}

.cy-comment-avatar  {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 2px rgba(253, 185, 51, 0.28);
}

.cy-comment-avatar-fallback  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cy-cyan), var(--cy-blue));
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.cy-comment-body  {
  min-width: 0;
}

.cy-comment-name  {
  color: var(--cy-navy);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 5px;
}

.cy-comment-text  {
  color: var(--cy-text);
  font-size: 14px;
  line-height: 1.7;
  word-break: break-word;
}

.cy-comment-time  {
  margin-top: 6px;
  color: var(--cy-muted);
  font-size: 12px;
}

.cy-article-content  {
  color: var(--cy-text);
  font-size: 15px;
  line-height: 1.9;
  word-break: break-word;
}

.cy-article-content.article-content-html img  {
  max-width: 100%;
  height: auto;
}

.cy-article-content.article-content-text  {
  white-space: pre-wrap;
}

.cy-article-error  {
  border: 1px dashed rgba(0, 154, 214, 0.24);
  border-radius: 8px;
  background: rgba(0, 154, 214, 0.04);
}

.cy-neighbor-nav  {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.cy-neighbor-link  {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(0, 154, 214, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  background: rgba(0, 154, 214, 0.035);
  color: var(--cy-text);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.cy-neighbor-link span  {
  color: var(--cy-muted);
  font-size: 12px;
  font-weight: 800;
}

.cy-neighbor-link strong  {
  overflow: hidden;
  color: var(--cy-navy);
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cy-neighbor-link:hover  {
  border-color: rgba(0, 154, 214, 0.42);
  background: rgba(0, 154, 214, 0.08);
  transform: translateY(-1px);
}

.cy-neighbor-link.is-disabled  {
  cursor: default;
  opacity: 0.58;
}

.cy-neighbor-link.is-disabled:hover  {
  border-color: rgba(0, 154, 214, 0.16);
  background: rgba(0, 154, 214, 0.035);
  transform: none;
}

.cy-recommend-list  {
  display: grid;
  gap: 0;
}

.cy-recommend-list .cy-empty  {
  padding: 18px 0;
}

.cy-recommend-list .cy-recommend-link  {
  gap: 10px;
}

.cy-recommend-list .cy-recommend-link span  {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cy-recommend-list .cy-recommend-link em  {
  flex: 0 0 auto;
  color: var(--cy-muted);
  font-size: 12px;
  font-style: normal;
}

.cy-btn.is-liked  {
  border-color: rgba(0, 154, 214, 0.42);
  background: rgba(0, 154, 214, 0.1);
  color: var(--cy-blue);
}

.cy-btn.is-collected  {
  border-color: rgba(253, 185, 51, 0.52);
  background: rgba(253, 185, 51, 0.16);
  color: var(--cy-navy);
}

@media (max-width: 768px)  {
  .cy-neighbor-nav  {
    grid-template-columns: 1fr;
  }
}

