
/* CSS 部分（建议放在单独的 .css 文件中） */
.motor-data-table-container {
  width: 100%;
  margin: 1.5rem auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {

  .motor-data-table {
    min-width: 680px;   /* 根据你的实际列数调整 */   
  }

  .motor-data-table tr{
    font-size: 10px !important;
  }

}

.motor-data-table {
  border-collapse: collapse;
  width:100%;
  font-size: 15px;
  line-height: 1.45;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  overflow: hidden;
  border-style:none;
}

.motor-data-table th,
.motor-data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e9ecef;
  text-align: left;
}

.motor-data-table th {
  font-weight: 600;
  line-height:2.9;
  background: #f1f3f5;
  color: #34495e;
}

.motor-data-table td {
  color: #2d3436;
}

/* 偶数行背景 */
.motor-data-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

/*鼠标移动行显示效果*/
.motor-data-table-container .motor-data-table tbody tr:hover{
  background-color: #f0f8ff;
}

