
    body { 
        font-family: Montserrat, sans-serif; 
        color: #6d6d6d;     
        text-align: center; /* 使内容居中 */
    }
    .table-container { 
        margin: 0 auto; /* 自动外边距 */ 
        width: 60%; /* 设置宽度为60% */
    }
    table { 
        border-collapse: collapse; 
        width: 100%; /* 表格宽度为100% */
    }
    th, td { 
        border: 1px solid #ccc; 
        padding: 8px; 
        text-align: left; 
    }
    th { 
        background-color: #f9f9f9; 
    }
