/* 顶部导航 */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.back {
  font-size: 15px;
  color: #333;
}

.back i {
  margin-right: 4px;
}

.title {
  font-size: 17px;
  font-weight: 500;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.actions i {
  font-size: 18px;
  color: #333;
}

.publish-btn {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 14px;
}

/* 推荐作者区域 */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #fff;
  margin-top: 8px;
  border-bottom: 1px solid #eee;
}

.section-header h2 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.refresh-btn {
  border: none;
  background: none;
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 作者列表 */
.author-list {
  background: #fff;
}

.author-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 12px;
}

.author-info {
  flex: 1;
  min-width: 0; /* 防止文字溢出 */
}

.author-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.verified {
  color: #ffc107;
  margin-left: 4px;
  font-size: 14px;
}

.author-desc {
  font-size: 13px;
  color: #999;
  margin: 2px 0;
}

.author-fans {
  font-size: 12px;
  color: #999;
}

.follow-btn {
  padding: 6px 14px;
  font-size: 13px;
  background: #e8f1ff;
  color: #1a73e8;
  border: none;
  border-radius: 16px;
  white-space: nowrap;
}

/* 更多领域作者样式 */
.author-meta {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.author-meta span {
  margin-right: 12px;
}

.author-item:has(.author-meta) .author-desc {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
  margin: 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
} 