
        body {
            font-family: 'Open Sans', sans-serif;
        }
        table {
            width: 100%;
            max-width: 1200px;
            height: 375px; /* 调整表格高度 */
            margin: 0 auto;
            border-radius: 10px;
            overflow: hidden; /* 圆角作用于表格内容 */
            border: 1px solid white; /* 边框颜色和宽度 */
            border-collapse: collapse; /* 合并边框 */
        }
        th {
            background-color: #d80c18;
            color: white;
            text-align: center;
            padding: 8px;
            font-size: 24px;
            border: 1px solid white; /* 边框颜色和宽度 */
        }
        th, td {
            text-align: center;
            padding: 8px;
            font-size: 16px;
            border: 1px solid white; /* 边框颜色和宽度 */
        }
        tr:nth-child(even) {
            background-color: #e5e5e5;
        }
    