/* 表格的基础样式 */
table {
    width: 100%;
    border-collapse: collapse;  /* 合并边框 */
    /*background-color: rgba(255, 255, 255, 0.2);  !* 设置背景颜色并控制透明度，增加透明度使背景更亮 *!*/
    backdrop-filter: blur(3px);  /* 应用背景模糊效果 */
    border-radius: 10px;  /* 圆角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* 阴影效果 */
}

/* 表头单元格的样式 */
th {
    background-color: #3498db;  /* 设置表头背景色，改成蓝色，深度较浅 */
    color: white;  /* 表头文字颜色为黑色 */
    text-align: center;  /* 居中对齐 */
    font-weight: bold;
}

/* 表格内容单元格的样式 */
td {
    border: 1px solid #75c3e7;  /* 添加边框 */
    color: white;  /* 设置文字颜色为黑色 */
}

/* 奇偶行不同背景色（交替色） */
tr:nth-child(even) {
    /*background-color: #f9f9f9;  !* 偶数行背景颜色，使用浅灰色背景 *!*/
}

tr:nth-child(odd) {
    /*background-color: #ffffff;  !* 奇数行背景颜色，白色背景 *!*/
}



/* 可选：表格字体样式 */
table, th, td {
    font-family: Arial, sans-serif;  /* 设置字体 */
}
