/* ========================================
   词语大全详情页覆盖样式（在 zuci/detail.css 基础上叠加）
   修复：多字词语词头自适应、组词入口按钮、相关词语列表
   ========================================= */

        /* 词头：词语自适应宽度，替代单字固定方块 */
        .char-info .char-display {
            width: auto;
            min-width: 100px;
            height: 100px;
            padding: 0 24px;
            font-size: 44px;
            white-space: nowrap;
            letter-spacing: 2px;
        }

        /* 组词入口按钮组 */
        .cross-link-section {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }

        .cross-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            color: #4a5568;
            transition: all 0.3s;
        }

        .cross-link-btn i {
            color: #667eea;
        }

        .cross-link-btn:hover {
            background: #667eea;
            border-color: #667eea;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .cross-link-btn:hover i {
            color: white;
        }

        /* 相关词语：词长不一，标题不固定宽 */
        .word-title {
            min-width: 0;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .char-info .char-display {
                height: 80px;
                font-size: 32px;
                min-width: 80px;
                padding: 0 16px;
            }

            .word-item {
                flex-direction: column;
                gap: 8px;
            }
        }
