.pulse-animation {
  animation: pulse 2s infinite;
}
.animate-glow {
  animation: glow 2s ease-in-out infinite alternate;
}
.animate-spin-slow {
  animation: spin 3s linear infinite;
}
@keyframes glow {
  from { box-shadow: 0 0 5px rgba(25, 135, 84, 0.5); }
  to { box-shadow: 0 0 20px rgba(25, 135, 84, 0.8), 0 0 30px rgba(25, 135, 84, 0.4); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* 设备展示区域样式 */

.device-card {
  /* background: #f8f9fa; */
  /* border-radius: 20px; */
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  /* border: 1px solid #f0f0f0; */
}

/* .device-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
} */

.device-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  text-align: center;
}

.device-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-content {
  padding: 10px 25px;
}

.device-content h5 {
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.device-content p {
  margin-bottom: 0px;
  line-height: 1.6;
  font-size: 14px;
}