.elementor-53916 .elementor-element.elementor-element-204b9feb{--display:flex;}.elementor-53916 .elementor-element.elementor-element-42236e41{font-size:16px;font-weight:400;line-height:1.6em;letter-spacing:0.2px;}.elementor-53916 .elementor-element.elementor-element-42236e41 p{margin-bottom:16px;}/* Start custom CSS for text-editor, class: .elementor-element-42236e41 *//* 整个表格的容器样式，添加外边框 */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  color: #555;
  border: 1px solid #ddd; /* 浅灰色外边框 */
}

/* 表头和单元格的基本样式，增加竖线 */
th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd; /* 底部细线 */
  border-right: 1px solid #ddd; /* 右侧竖线 */
}

/* 去除最后一列的竖线，保持美观 */
th:last-child,
td:last-child {
  border-right: none;
}

/* 表头样式 - 浅灰色背景，无底部边框 */
th {
  background-color: #f5f5f5;
  color: #555;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: none; /* 去除表头的底部边框 */
}

/* 鼠标悬停时的效果 */
tr:hover {
  background-color: #f8f8f8;
}

/* 突出显示左侧第一列 */
tbody tr td:first-child {
  font-weight: bold;
  color: #333;
}

/* 去除表格主体最后一行的底部边框 */
tbody tr:last-child {
  border-bottom: none;
}/* End custom CSS */