
/* 整体容器样式 */
.boya-flash-specs {
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

/* 电压段分区样式 */
.voltage-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.voltage-section h3 {
  font-size: 18px;
  color: #212529;
  margin: 0 0 15px 0;
  font-weight: 600;
  border-bottom: 2px solid #007bff;
  padding-bottom: 8px;
}

.note {
  font-size: 13px;
  color: #6c757d;
  margin: 0 0 15px 0;
  line-height: 1.5;
}

/* 表格响应式容器 */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* 规格表格样式 */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: #333;
}

.spec-table thead {
  background-color: #007bff;
  color: #fff;
}

.spec-table th,
.spec-table td {
  padding: 8px 10px;
  text-align: left;
  border: 1px solid #dee2e6;
  word-break: break-word;
  vertical-align: top;
}

.spec-table th {
  font-weight: 500;
  white-space: nowrap;
}

.spec-table tbody tr:nth-child(even) {
  background-color: #f2f4f6;
}

.spec-table tbody tr:hover {
  background-color: #e8f4ff;
  transition: background-color 0.2s ease;
}

/* 状态列特殊样式 */
.spec-table td:last-child {
  font-weight: 600;
  text-align: center;
}

/* Ueeshop移动端适配 */
@media (max-width: 768px) {
  .voltage-section {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .voltage-section h3 {
    font-size: 16px;
  }
  
  .spec-table th,
  .spec-table td {
    padding: 6px 8px;
    font-size: 11px;
  }
}
