/* * @description: */
/* * nickName: 	xis好 */
/*  email: xis-hao@qq.com
 */
/* 尊重原创，保留所有权利！ */
/* tel    :17364686746
 */
/* @date 2025/11/24
*/
        .game-tile-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .game-tile-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            max-width: 1000px; /* 最大宽度限制，避免过宽 */
            margin: 0 auto;
            padding: 0 0.5rem;
            gap: 0.5rem; /* 统一间距 */
        }

        .game-tile-group .input-container {
            position: relative;
            height: 120px;
            width: calc(33.333% - 0.5rem); /* 核心：每行3个，减去间距 */
            min-width: 80px; /* 最小宽度，确保小屏幕不挤压 */
            margin: 0;
        }

        .game-tile-group .input-container .radio-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            border: 2px solid; /* 颜色由行类控制 */
            border-radius: 10px;
            padding: 0.5rem;
            transition: transform 300ms ease;
            text-decoration: none;
            background-color: white;
        }

        .game-tile-group .input-container .icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .game-tile-group .input-container .radio-tile-label {
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .game-tile-group .input-container .radio-tile:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
        }

        /* 行颜色统一控制 - 每行使用同一颜色 */
        .row-primary .radio-tile {
            border-color: #4a90e2 !important;
        }
        .row-primary .radio-tile-label {
            color: #4a90e2 !important;
        }
        
        .row-secondary .radio-tile {
            border-color: #57c5b6 !important;
        }
        .row-secondary .radio-tile-label {
            color: #57c5b6 !important;
        }
        
        .row-tertiary .radio-tile {
            border-color: #7b68ee !important;
        }
        .row-tertiary .radio-tile-label {
            color: #7b68ee !important;
        }
        
        .row-quaternary .radio-tile {
            border-color: #64b5f6 !important;
        }
        .row-quaternary .radio-tile-label {
            color: #64b5f6 !important;
        }
        
        .game-tile-disabled .radio-tile {
            opacity: 0.7;
            cursor: default;
            border-color: #cccccc !important;
        }
        .game-tile-disabled .radio-tile-label {
            color: #cccccc !important;
        }

        /* 其他样式 */
        h1 {
            text-align: center;
            font-size: 1.875rem;
            font-weight: 600;
            margin: 20px 0 40px;
            color: #1976d2;
        }
        
        .copyright-note {
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: #666666;
            text-align: center;
        }
        
        .copyright-link {
            color: #1976d2;
            text-decoration: none;
        }
        
        .copyright-link:hover {
            color: #0d47a1;
            text-decoration: underline;
        }

        /* 移动端适配：仅调整尺寸，保持每行3个 */
        @media (max-width: 767px) {
            .game-tile-group .input-container {
                height: 100px; /* 移动端瓦片高度略小 */
            }
            
            .game-tile-group .input-container .icon {
                font-size: 1.5rem; /* 图标缩小 */
            }
            
            .game-tile-group .input-container .radio-tile-label {
                font-size: 0.75rem; /* 文字缩小 */
            }
            
            h1 {
                font-size: 1.5rem;
                margin: 15px 0 25px;
            }
        }