 /* 欢迎页样式优化 */
    ._6c7e7df {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 24px;
        text-align: center;
        animation: fadeIn 0.5s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .welcome-suggestions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin: 20px 0 30px;
    }
    
    .suggestion-item {
        background-color: rgba(77, 107, 254, 0.1);
        color: var(--dsw-alias-brand-primary);
        padding: 10px 16px;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 14px;
        border: 1px solid rgba(77, 107, 254, 0.2);
    }
    
    .suggestion-item:hover {
        background-color: rgba(77, 107, 254, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(77, 107, 254, 0.2);
    }
    
    /* 响应式优化 */
    @media (max-width: 768px) {
        ._6c7e7df {
            font-size: 20px;
            margin-bottom: 16px;
        }
        
        .welcome-suggestions {
            flex-direction: column;
            padding: 0 20px;
        }
        
        .suggestion-item {
            width: 100%;
            text-align: center;
        }
    }