/* 复用产品详情页基础样式，仅修改特色样式 */
.product-detail-banner {
  background: linear-gradient(135deg, #ffffff 0%, #00c6ff 100%);
}
.feature-icon {
  background: linear-gradient(135deg, #6a11cb 0%, #00c6ff 100%);
}
.specs-name {
  background-color: #f0e6ff;
}
/* 产品概览 */
.product-overview {
  padding: 80px 0;
  display: flex;
  gap: 60px;
  align-items: center;
}
/* 安全态势图样式 */
.situation-map {
  height: 400px;
  margin: 50px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
}
.situation-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.situation-map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(106,17,203,0.1) 0%, transparent 70%);
  animation: pulse 5s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(0.8); opacity: 0.5; }
}