#logged {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
        }
        
        .nav-item-user {
            display: flex;
            align-items: center;
            margin-right: 16px;
        }
        
        .user_headimg {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
        }
        /* 用户信息背景样式 */
        
        .user_id {
            font-size: 14px;
            color: #fff;
            /* 文字颜色 */
            /* padding: 5px 10px; */
            /* 增加内边距，使背景颜色更好看 */
            border-radius: 4px;
            /* 圆角效果 */
        }
        /* 下拉框样式 */
        
        .dropdown-toggle {
            cursor: pointer;
            color: #fff;
            font-size: 14px;
            position: relative;
        }
        /* 下拉框箭头 */
        
        .caret {
            margin-left: 5px;
            border-top: 5px solid #fff;
            border-right: 5px solid transparent;
            border-bottom: 0;
            border-left: 5px solid transparent;
            display: block;
        }
        /* 下拉菜单样式 */
        
        .ul_hide_tag {
            display: none;
            position: absolute;
            top: 100%;
            /* 依旧保持菜单位置 */
            right: 0;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 0;
            /* 去除整体内边距 */
            border-radius: 4px;
            min-width: 100px;
            z-index: 1000;
            list-style: none;
            /* 去除默认的列表样式 */
            margin: 0;
            /* 去除外边距 */
        }
        /* 每个菜单项li的样式 */
        
        .ul_hide_tag li {
            text-align: center;
            padding: 2px 10px;
            /* 设置上下内边距为 2px，左右 10px */
            margin: 0;
            /* 去掉li之间的间距 */
            font-size: 14px;
            /* 设置字体大小 */
            line-height: 2.5;
            /* 减小行高，减少每个li的上下间距 */
            cursor: pointer;
            /* 鼠标悬停时显示为指针 */
        }
        /* 下拉菜单项链接样式 */
        
        .ul_hide_tag li a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            display: block;
            padding: 4px 0;
            /* 减少上下的内边距 */
        }
        /* 鼠标悬停下拉菜单项 */
        
        .ul_hide_tag li a:hover {
            background-color: #f1f1f1;
        }
        /* 激活下拉菜单 */
        
        .dropdown:hover .ul_hide_tag {
            display: block;
        }
        /* 鼠标悬停下拉按钮时显示下拉菜单 */
        
        .dropdown:hover .dropdown-toggle {
            color: #3566ff;
        }