﻿/* Page styles for yonghuxieyi.html */

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

.cy-page-title-actions  {
  display: flex;
  align-items: center;
  gap: 16px;
}

.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-state-empty,
.cy-state-error  {
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(0, 154, 214, 0.06);
  color: var(--cy-muted);
}

.cy-state-error  {
  background: rgba(222, 33, 3, 0.08);
  color: #de2103;
  font-weight: 700;
}

