
        /* 页面容器 */
        .container_kf {
            max-width: 100%;
            margin: 0 auto;
            background: #fff;
            border-radius: 0px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }


        /* 表格样式 */
        .server-table {
            width: 100%;
            border-collapse: collapse;
        }

        .server-table th {
            background-color: #f51616;
            color:#fff;
            padding: 10px;
            text-align: center;
            font-size: 14px;
            border-bottom: 2px solid #eee;
        }

        .server-table td {
            padding: 12px 10px;
            padding: 8px;
            text-align: center;
            border-bottom: 1px solid #eee;
            font-size: 15px;
        }

        /* 交替行背景 */
        .server-table tr:nth-child(even) {
            background-color: #fafafa;
        }

        /*  hover 效果 */
        .server-table tr:hover {
            background-color: #f9db13;
        }

        /* 进入游戏按钮 */
        .enter-btn {
            display: inline-block;
            padding: 6px 10px;
            background-color: #ff4400;
            color:#fff;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
        }

        .enter-btn:hover {
            background-color: #e63900;
            color:#fff;
        }