
    /* 1. 整体布局：最大宽度900px并居中 */
    .wrapper {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px 16px;
        font-family: Arial, Helvetica, sans-serif;
        box-sizing: border-box;
        color: #333;
    }

    /* 顶部文字区块 */
    .section-opening {
        margin-bottom: 32px;
    }

    .main-title {
        font-size: 28px;
        font-weight: 600;
        color: #111;
        margin-bottom: 16px;
        text-align: center;
    }

    .description-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    /* 2. 表格设计 - 已优化居中方案 */
    .table-container {
        width: 100%;
        display: flex;
        justify-content: center;
        /* 水平居中 */
        margin-top: 20px;
    }

    table {
        border-collapse: collapse;
        width: 80%;
        /* 改为百分比宽度，更好地适应容器 */
        max-width: 700px;
        /* 增大最大宽度，在PC端显示更宽 */
        border: 1px solid #ddd;
        /* 关键居中保障 */
        margin-left: auto !important;
        margin-right: auto !important;
    }

    th,
    td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: center;
        font-size: 16px;
    }

    /* 表头样式 */
    th {
        background-color: #f9f9f9;
        font-weight: 600;
        color: #111;
    }

    /* 斑马纹效果（可选，增加易读性） */
    tr:nth-child(even) {
        background-color: #fafafa;
    }
