/* 首页样式 */
.hero-banner {
  background: linear-gradient(135deg, #1a6fb5 0%, #2196F3 50%, #00BCD4 100%);
  color: #fff;
  padding: 24px 16px 20px;
  text-align: center;
}

.hero-banner h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-banner p {
  font-size: 13px;
  opacity: 0.9;
}

.category-section {
  margin-top: 12px;
}

.category-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
}

.category-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: transform 0.15s;
  text-decoration: none;
  color: var(--text);
  gap: 12px;
}

.category-card:active {
  transform: scale(0.98);
}

.category-card .cc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cc-icon-wrap.liquid {
  background: #e3f2fd;
  color: #1976d2;
}

.cc-icon-wrap.solid {
  background: #fce4ec;
  color: #c62828;
}

.cc-icon-wrap.hybrid {
  background: #f3e5f5;
  color: #7b1fa2;
}

.category-card .cc-info {
  flex: 1;
}

.category-card .cc-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.category-card .cc-desc {
  font-size: 12px;
  color: var(--text-light);
}

.category-card .cc-arrow {
  color: var(--text-light);
  font-size: 16px;
}

.quick-links {
  display: flex;
  gap: 10px;
  padding: 0 16px;
  margin-top: 12px;
}

.quick-link {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.15s;
}

.quick-link:active {
  transform: scale(0.96);
}

.quick-link .ql-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.quick-link .ql-text {
  font-size: 12px;
  font-weight: 500;
}
