﻿/*导航栏*/

.userInfoPanel {
    position: relative;
    display: flex;
    align-items: center;
}

    .userInfoPanel .user-normal {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .userInfoPanel .user-normal img {
        border-radius: 50%;
        margin-right: 10px;
    }

    .userInfoPanel .user-normal span {
        font-size: 14px;
        margin-right: 20px;
        color: #fff;
    }

.user-box {
    width: 320px;
    height: auto;
    overflow: hidden;
    display: none;
    position: absolute;
    top: 55px;
    left: auto;
    right: auto;
    z-index: 2030;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 2px 8px 0px rgba(26,62,153,0.1);
}

    .user-box .user-top {
        height: 110px;
        background: #F5F7FB;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        box-sizing: border-box;
        padding: 30px;
    }

        .user-box .user-top .user-logo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #fff;
        }

        .user-box .user-top span {
            font-weight: Bold;
            font-size: 20px;
            line-height: 20px;
            margin-left: 14px;
            color: #333;
        }

        .user-box .user-top .user-img {
            position: absolute;
            top: 20px;
            right: 10px;
            width: 70px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
        }


    .user-box .user-bottom {
        padding: 20px 30px 28px 30px;
        box-sizing: border-box;
    }

        .user-box .user-bottom ul {
        }

            .user-box .user-bottom ul li {
                width: 260px;
                height: 60px;
                border-radius: 8px;
                background: #F6F6F6;
                display: flex;
                align-items: center;
                justify-content: space-between;
                cursor: pointer;
                padding: 22px 15px 22px 11px;
                box-sizing: border-box;
                transition: all .3s ease;
            }

                .user-box .user-bottom ul li img {
                    width: 7px;
                    height: 12px;
                    object-fit: cover;
                }

                .user-box .user-bottom ul li:hover {
                    background: #E8E8E8;
                }

                .user-box .user-bottom ul li:last-child {
                    margin-bottom: 0;
                }

                .user-box .user-bottom ul li span {
                    font-size: 16px;
                    color: #333;
                }


    .user-box .display-flex {
        display: flex;
        justify-content: space-between;
        line-height: unset;
        margin-top: 23px;
    }

    .user-box .user-panel-link {
        font-size: 14px;
        color: #666666;
        cursor: pointer;
        line-height: 14px;
    }

        .user-box .user-panel-link:hover {
            text-decoration: underline;
        }

.user-single-line {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}