
/* 整体容器 */
.drone-specs-wrap {
  max-width: 100%;
  margin: 20px 0;
  padding: 0 15px; /* 左右留白，不贴边 */
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* 顶部主标题 */
.main-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin: 0 0 15px;
  padding: 10px;
  line-height: 1.5;
}
.main-title span {
  color: #007bff;
  font-weight: 600;
}
.main-title a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.main-title a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* 标签切换栏 - 居中排版 */
.drone-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.drone-tab {
  padding: 12px 22px;
  background: #f5f5f5;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.drone-tab:hover {
  background: #e6f0ff;
  color: #007bff;
  transform: translateY(-2px);
}
.drone-tab.active {
  background: #007bff;
  color: #fff;
}

/* 内容面板 */
.drone-content {
  display: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.drone-content.show {
  display: block;
  animation: fade 0.3s ease;
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 参数表格样式 */
.drone-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.drone-table tr {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.25s ease;
}
.drone-table tr:hover {
  background: #f0f7ff; /* 悬浮高亮 */
  transform: scale(1.01);
}
.drone-table td {
  padding: 13px 16px;
  vertical-align: middle;
  font-size: 14px;
}
.drone-table td:first-child {
  width: 34%;
  font-weight: 600;
  background: #fafafa;
  color: #333;
}
.drone-table td:last-child {
  color: #555;
}
