        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0px 5px;
        }

        .navbar {
            background-color: #ffffff;
            height: 45px;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid #ddd;
            margin-bottom: 10px;
        }

        .navbar ul {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
            gap: 8px;
            /* 更清晰的间距 */
        }

        .navbar li {
            display: inline-block;
        }

        .navbar a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
            border: 1px solid #ccc;
            font-size: 14px;
        }

        .navbar a:hover,
        .navbar a.active {
            background-color: #333;
            color: white;
            border-color: #333;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .container-sx {
            width: 100%;
            margin-bottom: 10px;
        }

        .container-bs {
            width: 100%;
            margin-bottom: 10px;
        }

        .container-wh {
            width: 100%;
            margin-bottom: 10px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th,
        td {
            border: 1px solid #ccc;
            padding: 8px 5px;
            text-align: center;
        }

        th {
            background-color: #f2f2f2;
        }

        .red-wave {
            color: red;
        }

        .blue-wave {
            color: blue;
        }

        .green-wave {
            color: green;
        }

        .number-list {
            display: flex;
            justify-content: space-between;
            /* 平均分布 */
            align-items: center;
            flex-wrap: wrap;
            /* 自动换行 */
            padding: 5px 10px;
        }

        .number-list span {
            flex: 0 0 calc(100% / 17 - 10px);
            /* 每行显示 5 个，可根据需要调整 */
            text-align: center;
            margin: 0px 3px;
        }

        .gold {
            color: goldenrod;
        }

        .wood {
            color: green;
        }

        .water {
            color: blue;
        }

        .fire {
            color: red;
        }

        .earth {
            color: brown;
        }

        /* 如果你想让五行表格与波色表格外观一致 */
        .number-list5 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 5px 10px;
        }

        .number-list5 span {
            flex: 0 0 calc(100% / 12 - 10px);
            /* 每行显示约 12 个号码，可根据实际调整 */
            text-align: center;
            margin: 0px 3px;
        }

        /* 针对 container-sx 容器中的表格，设置隔列变色 */
        .container-sx table tr td:nth-child(even) {
            background-color: #f9f9f9;
            /* 浅灰色背景 */
        }

        /* 可选：奇数列设置白色或其他颜色 */
        .container-sx table tr td:nth-child(odd) {
            background-color: #ffffff;
            /* 白色背景 */
        }

        /* 整列悬停样式 */
        .container-sx table td.highlight-col,
        .container-sx table th.highlight-col {
            background-color: #f1f1f1 !important;
            /* 浅灰色背景 */
        }

        /* 所有表格 - 隔行变色 */
        .container-bs table tr:nth-child(even),
        .container-wh table tr:nth-child(even),
        .container-reference-2 table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .container-bs table tr:nth-child(odd),
        .container-wh table tr:nth-child(odd),
        .container-reference-2 table tr:nth-child(odd) {
            background-color: #ffffff;
        }

        .container-bs table tr:hover,
        .container-wh table tr:hover,
        .container-reference table tr:hover,
        .container-reference-2 table tr:hover {
            background-color: #f1f1f1;
        }

        .container-reference {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }

        .reference-col {
            flex: 1 1 calc(33% - 10px);
            min-width: 250px;
            box-sizing: border-box;
        }

        .reference-col h3 {
            text-align: center;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .reference-col table {
            width: 100%;
            border-collapse: collapse;
        }

        .reference-col th,
        .reference-col td {
            border: 1px solid #ccc;
            padding: 5px;
            text-align: center;
        }

        .container-reference-2 {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .reference-col-2 {
            flex: 1 1 calc(50% - 10px);
            min-width: 250px;
            box-sizing: border-box;
        }

        .reference-col-2 h3 {
            text-align: center;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .reference-col-2 table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 10px;
        }

        .reference-col-2 th,
        .reference-col-2 td {
            border: 1px solid #ccc;
            padding: 6px;
            text-align: center;
        }

        .title {
            text-align: center;
            font-size: 16px;
            background-color: #f2f2f2;
            /* 浅灰色背景 */
            border-left: 1px solid #ccc;
            /* 左边框 */
            border-top: 1px solid #ccc;
            /* 上边框 */
            border-right: 1px solid #ccc;
            /* 右边框 */
            margin: 0;
            padding: 8px 0;
        }

        .red {
            color: red;
        }

        /* 当屏幕宽度小于 768px 时 */
        @media (max-width: 768px) {
            .number-list span {
                flex: 0 0 calc(100% / 9 - 10px);
                /* 每行显示 9 个 */
            }

            .container-reference {
                flex-direction: column;
            }

            .reference-col {
                flex: 1 1 100%;
            }

            .container-reference-2 {
                flex-direction: column;
                gap: 0px;
            }

            .reference-col-2 {
                flex: 1 1 100%;
            }

            .navbar a {
                padding: 6px 12px;
                font-size: 13px;
            }

            /* 默认隐藏菜单 */
            .navbar .menu {
                display: none;
                flex-direction: column;
                background-color: #fff;
                position: absolute;
                top: 50px;
                left: 0;
                right: 0;
                padding: 10px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                z-index: 999;
                border-top: 1px solid #ddd;
            }

            .navbar .menu.active {
                display: flex;
            }

            .navbar .menu li {
                width: 100%;
                text-align: center;
                margin: 5px 0;
            }

            .navbar .menu a {
                font-size: 14px;
                width: 100%;
            }

            /* 汉堡按钮样式 */
            .navbar .menu-toggle {
                display: block;
                position: absolute;
                right: 15px;
                background: none;
                border: none;
                font-size: 20px;
                cursor: pointer;
                z-index: 1000;
                color: #333;
            }
        }

        @media (min-width: 769px) {
            .navbar .menu-toggle {
                display: none !important;
            }
        }