/**
 * 切换账号
 */
html,
body {
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
}

.account-change-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-change {
    font-size: 14px;
    width: 450px;
    height: 500px;
    background: #fff;
    background: url(/static/css/web/images/login/bg.png) no-repeat -15px -10px;
    background-size: 120% 110%;
    box-sizing: border-box;
    padding: 60px 80px 60px 80px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
}

.accoutn-list {
    max-height: 400px;
    overflow-y: auto;
}

.accoutn-list::-webkit-scrollbar {
    width: 5px;
}

.accoutn-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.accoutn-list::-webkit-scrollbar-thumb {
    background: #2878ff;
}

.accoutn-list::-webkit-scrollbar-thumb:hover {
    background: rgb(136, 173, 236);
}

.accoutn-list .item {
    display: flex;
    padding: 20px;
    cursor: pointer;
}

.accoutn-list .item:not(.current):hover .col>div:nth-child(1) {
    color: #f80;
}

.accoutn-list .item:hover .avatar {
    background-color: #f80;
}

.accoutn-list .item .avatar {
    display: inline-block;
    background: #dbdbdb;
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.accoutn-list .item .col>div:nth-child(2) {
    margin-top: 10px;
}

.accoutn-list .item .col .tag {
    border-radius: 3px;
    border: 1px solid #ddd;
    font-size: 12px;
    padding: 3px 5px 3px 23px;
}

.accoutn-list .item .col .tag_1 {
    background: url(/static/css/web/images/login/icon_7.svg) no-repeat 3px 3px;
}

.accoutn-list .item .col .tag_2 {
    background: url(/static/css/web/images/login/icon_8.svg) no-repeat 3px 3px;
}

.accoutn-list .item .col .tag svg {
    position: relative;
    top: 2px;
    margin-right: 3px;
}

.accoutn-list .item.current {
    border-radius: 6px;
    background: url(/static/css/web/images/login/success.svg) no-repeat 95% center #f8fbff;
}

.accoutn-list .item.current .tag_1 {
    background: url(/static/css/web/images/login/icon_6.svg) no-repeat 3px 3px;
}

.accoutn-list .item.current .tag_2 {
    background: url(/static/css/web/images/login/icon_9.svg) no-repeat 3px 3px;
}

.accoutn-list .item.current .avatar {
    background: #3385ff;
}

.accoutn-list .item .col>div:nth-child(2) span:nth-child(2) {
    color: #f80;
    margin-left: 30px;
}