
/* 通用表格样式 */
.pricing-table {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  border-collapse: collapse;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Arial, sans-serif;
}

.pricing-table th {
  background-color: #2196F3; /* 蓝色主题 */
  color: white;
  padding: 15px;
  text-align: left;
}

.pricing-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

/* 表格1特殊样式 */
#packaging-table th { background-color: #4CAF50; } /* 绿色主题 */

/* 表格2特殊样式 */
#pricing-table th { background-color: #2196F3; } /* 蓝色主题 */

/* 公共效果 */
.pricing-table tr:hover { background-color: #f5f5f5; }
.pricing-table tr:nth-child(even) { background-color: #f9f9f9; }

/* 响应式设计 */
@media (max-width: 600px) {
  .pricing-table { font-size: 14px; }
  .pricing-table th, 
  .pricing-table td { padding: 10px; }
}
