/* 留言区页面样式 */

/* 留言项样式 */
.comment-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: white;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.comment-title {
  margin: 0;
  color: #2c5aa0;
  font-size: 1.3rem;
}

.comment-category {
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
}

.comment-category.experience {
  background: #e8f4fd;
  color: #2c5aa0;
}

.comment-category.question {
  background: #fff3cd;
  color: #856404;
}

.comment-category.suggestion {
  background: #f8d7da;
  color: #721c24;
}

.comment-category.story {
  background: #d1e7dd;
  color: #0f5132;
}

.comment-category.other {
  background: #f8f9fa;
  color: #6c757d;
}

.comment-meta {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.comment-author {
  margin-right: 2rem;
}

.comment-content {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.comment-actions {
  display: flex;
  gap: 1rem;
}

.btn-like,
.btn-reply {
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.action-icon {
  width: 20px;
  height: 20px;
}

/* 联系信息样式 */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.contact-title {
  color: #2c5aa0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-value {
  color: #666;
  font-size: 1rem;
}
