/** @format */

.supplements-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.supplements-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.supplements-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.supplements-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.supplements-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.supplements-item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.4;
  /* 限制标题行数 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.supplements-item-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 16px;
}

.supplements-item-more {
  display: inline-flex;
  align-items: center;
  color: #667eea;
  font-weight: 600;
  font-size: 14px;
}

.supplements-item-more svg {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.supplements-item:hover .supplements-item-more svg {
  transform: translateX(4px);
}

.supplements-records {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #666;
  font-size: 16px;
}

.supplements-detail {
  max-width: 900px;
  margin: 0 auto;
}

.supplements-detail-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  line-height: 1.3;
}

.supplements-detail-content {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.supplements-detail-content p {
  margin-bottom: 20px;
}

@media (max-width: 789px) {
  .supplements-container {
    padding: 40px 16px;
  }

  .supplements-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .supplements-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .supplements-item {
    padding: 20px;
  }

  .supplements-item-title {
    font-size: 18px;
  }

  .supplements-detail-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .supplements-detail-content {
    font-size: 16px;
  }
}
