.top-nav {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    display: flex;
    padding: 10px 10px 10px 24px;
    position: relative;
}

.top-nav .top-nav-left {
    width: 164px;
    height: 40px;
    box-sizing: border-box;
    flex: 1;
    display: flex;
}

.top-nav .top-nav-left .logo {
    width: 40px;
    height: 40px;
}

.top-nav .top-nav-left .title {
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    line-height: 30px;
    font-style: normal;
    text-transform: none;
    padding: 5px 0 5px 4px;
    flex: 1;
}

.top-nav .top-nav-right {
    display: flex;
    flex: 1;
    position: absolute;
    right: 0;
    gap: 23px;
}

.top-nav .top-nav-right .personal-center {
    width: 154px;
    height: 36px;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 8px 0 8px 8px;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    font-style: normal;
    text-transform: none;
    cursor: pointer;
    position: relative;
}

.top-nav .top-nav-right .personal-center .personal-center-card {
    width: 200px;
    height: 183px;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 8px 8px 8px 8px;
    border: 1px solid #E5EDFF;
    padding: 8px 0;
    position: absolute;
    top: 36px;
    left: 0;
    z-index: 100;
    display: none;
}

.top-nav .top-nav-right .personal-center:hover .personal-center-card {
    display: block;
}

.top-nav .top-nav-right .personal-center .personal-center-card .account-info {
    width: 200px;
    height: 80px;
    box-sizing: border-box;
    padding: 8px 10px;
}

.top-nav .top-nav-right .personal-center .personal-center-card .el-divider {
    width: 64px;
    margin: 6px auto;
}

.top-nav .top-nav-right .personal-center .personal-center-card .row-item {
    width: 200px;
    height: 34px;
    box-sizing: border-box;
    padding: 8px 10px;
    display: flex;
    gap: 10px;
}

.top-nav .top-nav-right .personal-center .personal-center-card .row-item .row-item-icon {

}

.top-nav .top-nav-right .personal-center .personal-center-card .row-item .row-item-label {
    font-weight: 400;
    font-size: 14px;
    color: #4F4F4F;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.top-nav .top-nav-right .login-info {
    width: 40px;
    height: 40px;
}

.top-nav .top-nav-right .login-info img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
}

.account-info-label {
    height: 18px;
    font-weight: 400;
    font-size: 14px;
    color: #4F4F4F;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.account-info-row {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.account-info-row .account-info-row-left {
    width: 32px;
    height: 32px;
    box-sizing: border-box;
}

.account-info-row .account-info-row-left img{
    width: 32px;
    height: 32px;
    border-radius: 16px 16px 16px 16px;
    border: 1px solid var(--mainbtnbgcolor, #165DFF);
}

.account-info-row .account-info-right {
    width: 74px;
    height: 36px;
    box-sizing: border-box;
}

.account-info-row .account-info-right .account-info-right-identity {
    width: 49px;
    height: 18px;
    box-sizing: border-box;
    background: var(--mainbtnbgcolor, #165DFF);
    border-radius: 11px 11px 11px 11px;
    font-weight: 400;
    font-size: 11px;
    color: #FFFFFF;
    line-height: 14px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    padding: 2px 0;
}

.account-info-row .account-info-right .account-info-right-phone {
    font-weight: 400;
    font-size: 12px;
    color: #4F4F4F;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.upload-img-demo {
    display: flex;
    position: relative;
}

.upload-img-demo .del-upload-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--mainbtnbgcolor, #165DFF);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider {
    width: 64px;
    height: 1px;
    background: #EDEDED;
}