
        @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap');
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 20px;
        }

        table {
            border-collapse: collapse;
            margin: 20px auto;
            width: 90%;
            background-color: white;
        }

        th, td {
            border: 1px solid #ddd; /* 表格边框颜色为浅灰色 (#ddd) */
            padding: 10px 15px;
            text-align: center;
        }

        th {
            background-color: #C1272E !important; /* 表头背景为红色 */
            color: white;
            font-size: 18px; /* 表头字体大小 */
        }

        td {
            font-size: 18px; /* 正文字号 */
            color: #333; /* 正文字体颜色 */
        }

        caption {
            font-size: 40px; /* 标题字号 */
            font-weight: bold;
            margin-bottom: 10px;
            color: #333; /* 标题字体颜色 */
        }
    