/* 选中单元格的背景色 */
.selectTdClass {
  background-color: #edf5fa !important;
}

/* 无边框表格的边框样式 */
table.noBorderTable td,
table.noBorderTable th,
table.noBorderTable caption {
  border: 1px dashed #ddd !important;
}

/* 表格通用样式 */
table {
  margin-bottom: 10px;
  border-collapse: collapse;
  display: table;
}

/* 单元格和表头通用内边距与边框 */
td,
th {
  padding: 5px 10px;
  border: 1px solid #ddd;
}

/* 表格标题样式 */
caption {
  border: 1px dashed #ddd;
  border-bottom: 0;
  padding: 3px;
  text-align: center;
}

/* 表头背景与上边框 */
th {
  border-top: 1px solid #bbb;
  background-color: #f7f7f7;
}

/* 表格第一行表头的加粗上边框 */
table tr.firstRow th {
  border-top-width: 2px;
}

/* 表格隔行变色：单数行 */
.ue-table-interlace-color-single {
  background-color: #fcfcfc;
}

/* 表格隔行变色：双数行 */
.ue-table-interlace-color-double {
  background-color: #f7faff;
}

/* 单元格内段落无外边距 */
td p {
  margin: 0;
  padding: 0;
}