
        table {
            border-collapse: collapse;
            width: 100%;
            font-family: Arial, sans-serif;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        /* 第一行和最后一列的样式 */
        tr:first-child th,
        td:last-of-type {
            background-color: #4CAF50;
            color: white;
        }
        /* 鼠标悬停效果 */
        tr:hover {
            background-color: #f5f5f5;
        }
        /* 交替行颜色 */
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        th {
            background-color: #4CAF50;
            color: white;
        }
    