    /* 下拉菜单样式优化 */
    ._2afd28d {
        display: flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 8px;
        transition: background-color 0.2s;
        cursor: pointer;
    }
    
    ._2afd28d:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    .ede5bc47 {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 8px;
    }
    
    .fdf01f38 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    ._9d8da05 {
        font-size: 14px;
        font-weight: 500;
        margin-right: 8px;
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .ds-dropdown-menu-option {
        transition: background-color 0.2s;
    }
    
    .ds-dropdown-menu-option:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    /* 响应式优化 */
    @media (max-width: 768px) {
        ._9d8da05 {
            max-width: 80px;
        }
        
        ._2afd28d {
            padding: 6px 8px;
        }
    }