/* 器材装备页面样式 */
.equipment-banner {
  height: 300px;
  background: #2E3192;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

.equipment-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.equipment-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.category-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background: #f5f5f5;
  transition: all 0.3s;
}

.category-card:hover {
  background: #2E3192;
  color: #fff;
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.equipment-card {
  position: relative;
  overflow: hidden;
}

.equipment-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s;
}

.equipment-card:hover img {
  transform: scale(1.1);
}

.equipment-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
}

.price {
  color: #FFB81C;
  font-size: 1.2rem;
  font-weight: bold;
} 