/* 工具详情页面样式 */

/* 加载状态 */
.tool-detail-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  margin: 20px;
}

/* 错误状态 */
.tool-detail-error {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 20px;
  text-align: center;
}

.tool-detail-error-title {
  font-size: 24px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 12px;
}

.tool-detail-error-desc {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* 主要容器 */
.tool-detail-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 20px 0;
}

.tool-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 返回按钮区域 */
.tool-detail-back-section {
  margin-bottom: 24px;
}

/* 主要内容区域 */
.tool-detail-main-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 768px) {
  .tool-detail-main-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* 卡片基础样式 */
.tool-detail-header-card,
.tool-detail-content-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tool-detail-header-card:hover,
.tool-detail-content-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* 工具头部信息 */
.tool-detail-header-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.tool-detail-icon-container {
  flex-shrink: 0;
}

.tool-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
}

.tool-detail-info {
  flex: 1;
}

.tool-detail-title-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tool-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.tool-detail-tag {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.tool-detail-tag.hot {
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  color: white;
}

.tool-detail-tag.new {
  background: linear-gradient(135deg, #48c9b0 0%, #5dade2 100%);
  color: white;
}

.tool-detail-tag.rec {
  background: linear-gradient(135deg, #a29bfe 0%, #fd79a8 100%);
  color: white;
}

.tool-detail-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.tool-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tool-detail-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tool-detail-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.tool-detail-btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.tool-detail-btn-secondary {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.tool-detail-btn-secondary:hover {
  background: #e5e7eb;
  color: #374151;
  transform: translateY(-1px);
}

/* 内容区块标题 */
.tool-detail-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tool-detail-section-indicator {
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* 功能特性网格 */
.tool-detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tool-detail-feature-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.tool-detail-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-detail-feature-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
}

.tool-detail-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-detail-feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.tool-detail-feature-list-item:last-child {
  margin-bottom: 0;
}

.tool-detail-feature-bullet {
  width: 6px;
  height: 6px;
  background: #667eea;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.tool-detail-feature-list-item strong {
  font-weight: 600;
  color: #2d3748;
  display: block;
  margin-bottom: 4px;
}

.tool-detail-feature-list-item p {
  color: #718096;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* 快速指南 */
.tool-detail-guide-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tool-detail-guide-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.tool-detail-guide-step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.tool-detail-guide-step-content {
  flex: 1;
}

.tool-detail-guide-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.tool-detail-guide-step-description {
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* 使用技巧 */
.tool-detail-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.tool-detail-tip-item {
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid;
}

.tool-detail-tip-item.tip {
  background: #fef3c7;
  border-left-color: #f59e0b;
}

.tool-detail-tip-item.note {
  background: #dbeafe;
  border-left-color: #3b82f6;
}

.tool-detail-tip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tool-detail-tip-icon {
  font-size: 20px;
}

.tool-detail-tip-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.tool-detail-tip-content {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* 相关资源 */
.tool-detail-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.tool-detail-resource-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tool-detail-resource-item:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tool-detail-resource-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.tool-detail-resource-content {
  flex: 1;
}

.tool-detail-resource-title {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.tool-detail-resource-description {
  color: #718096;
  font-size: 14px;
  margin: 0;
}

.tool-detail-resource-arrow {
  font-size: 16px;
  color: #a0aec0;
}

/* 右侧边栏 */
.tool-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 20px;
}

/* 统计信息卡片 */
.tool-detail-stats-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.tool-detail-stats-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
  text-align: center;
}

.tool-detail-stats-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tool-detail-stats-item {
  text-align: center;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.tool-detail-stats-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 4px;
}

.tool-detail-stats-label {
  font-size: 14px;
  color: #6b7280;
}

/* 微信群卡片 */
.tool-detail-wechat-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.tool-detail-wechat-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-detail-wechat-icon {
  font-size: 20px;
}

.tool-detail-wechat-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tool-detail-wechat-qr {
  text-align: center;
}

.tool-detail-wechat-qr-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #e5e7eb;
}

.tool-detail-wechat-qr-text {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* ========== 精美社区卡片样式 ========== */
.community-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(99, 102, 241, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 40px rgba(99, 102, 241, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ========== 微信群部分样式 ========== */
.community-wechat {
  padding: 24px 24px 20px 24px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.08);
  position: relative;
}

.community-header {
  position: relative;
  margin-bottom: 20px;
}

.community-header-gradient {
  position: absolute;
  top: -10px;
  left: -24px;
  right: -24px;
  height: 60px;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.03) 0%, 
    rgba(139, 92, 246, 0.03) 50%, 
    rgba(6, 182, 212, 0.03) 100%);
  border-radius: 20px 20px 0 0;
}

.community-header-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.community-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  overflow: hidden;
}

.community-icon-text {
  font-size: 20px;
  position: relative;
  z-index: 2;
}

.community-icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.community-title-section {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.community-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

.community-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #059669;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(5, 150, 105, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.community-badge-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.community-qr-section {
  margin-top: 20px;
}

.community-qr-container {
  text-align: center;
}

.community-qr-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.community-qr-image {
  width: 130px;
  height: 130px;
  border-radius: 16px;
  /* border: 3px solid transparent; */
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #6366f1, #8b5cf6) border-box;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.community-qr-overlay {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.community-qr-frame:hover .community-qr-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.community-qr-frame:hover .community-qr-image {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.community-qr-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 200px;
  margin: 0 auto;
}

/* ========== 实时统计部分样式 ========== */
.community-stats {
  padding: 20px 24px 24px 24px;
  background: linear-gradient(135deg, 
    rgba(6, 182, 212, 0.02) 0%, 
    rgba(34, 197, 94, 0.02) 100%);
}

.community-stats-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.community-stats-pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.community-stats-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.community-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.community-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.community-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.03), rgba(34, 197, 94, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.community-stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.1);
}

.community-stat-item:hover::before {
  opacity: 1;
}

.community-stat-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  flex-shrink: 0;
}

.community-stat-icon.online {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.community-stat-icon.active {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.community-stat-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: icon-pulse 3s infinite;
}

@keyframes icon-pulse {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.community-stat-content {
  flex: 1;
  z-index: 2;
  position: relative;
  min-width: 0;
}

.community-stat-label {
  display: block;
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 1px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.community-stat-number {
  display: block;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* 推荐工具卡片 */
.tool-detail-recommendations-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.tool-detail-recommendations-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-detail-recommendations-icon {
  font-size: 20px;
}

.tool-detail-recommendations-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tool-detail-recommendation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
}

.tool-detail-recommendation-item:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tool-detail-recommendation-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}

.tool-detail-recommendation-content {
  flex: 1;
  min-width: 0;
}

.tool-detail-recommendation-name {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-detail-recommendation-description {
  color: #718096;
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-detail-recommendation-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
}

.tool-detail-recommendation-tag.hot {
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  color: white;
}

.tool-detail-recommendation-tag.new {
  background: linear-gradient(135deg, #48c9b0 0%, #5dade2 100%);
  color: white;
}

.tool-detail-recommendation-tag.rec {
  background: linear-gradient(135deg, #a29bfe 0%, #fd79a8 100%);
  color: white;
}

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
  .community-card {
    border-radius: 16px;
  }
  
  .community-wechat,
  .community-stats {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .community-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .community-qr-image {
    width: 110px;
    height: 110px;
  }
  
  .community-header-content {
    gap: 12px;
  }
  
  .community-icon {
    width: 40px;
    height: 40px;
  }
  
  .community-title {
    font-size: 16px;
  }
  
  .community-title-section {
    gap: 8px;
  }
  
  .community-badge {
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .community-stat-item {
    padding: 9px;
    gap: 7px;
  }
  
  .community-stat-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  
  .community-stat-label {
    font-size: 10px;
  }
  
  .community-stat-number {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .community-stat-item {
    padding: 8px;
    gap: 6px;
  }
  
  .community-stat-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  
  .community-stat-number {
    font-size: 14px;
  }
  
  .community-stat-label {
    font-size: 10px;
  }
  
  .community-title {
    font-size: 14px;
  }
  
  .community-title-section {
    gap: 6px;
  }
  
  .community-badge {
    font-size: 10px;
    padding: 2px 6px;
  }
}

/* 原有响应式设计 */
@media (max-width: 1024px) {
  .tool-detail-container {
    padding: 0 16px;
  }
  
  .tool-detail-header-card,
  .tool-detail-content-card {
    padding: 24px;
  }
  
  .tool-detail-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .tool-detail-header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .tool-detail-icon {
    width: 60px;
    height: 60px;
  }
  
  .tool-detail-title {
    font-size: 24px;
  }
  
  .tool-detail-feature-grid,
  .tool-detail-tips-grid,
  .tool-detail-resources {
    grid-template-columns: 1fr;
  }
  
  .tool-detail-guide-step {
    flex-direction: column;
    text-align: center;
  }
  
  .tool-detail-btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .tool-detail-page {
    padding: 10px 0;
  }
  
  .tool-detail-container {
    padding: 0 12px;
  }
  
  .tool-detail-header-card,
  .tool-detail-content-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  
  .tool-detail-main-content {
    gap: 12px;
  }
} 