        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
			text-align: center; 
        }
        a {
            text-decoration: none;
            color: #007BFF;
        }
        .container {
            width: 90%;
            margin: 0 auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed; /* 设置表格布局为固定 */
        }
        th, td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
			font-size: 25px; 
        }
        th {
            background-color: #f2f2f2;
        }
        /* 设置每一列的宽度 */
        th:first-child, td:first-child {
            width: 10%;
        }
        th:nth-child(2), td:nth-child(2) {
            width: 30%;
        }
        th:last-child, td:last-child {
            width: 60%;
        }
        .image-column img {
            max-width: 60px;
            height: auto;
        }
        .character-column a {
            text-decoration: none;
            color: #007BFF;
        }
        .character-column a:hover {
            text-decoration: none;
        }	
		.lazy {
        opacity: 0;
        transition: opacity 0.5s;
        }
        .lazy.loaded {
        opacity: 1;
        }