body {
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    margin: 0;
    --page-width: 375;
}

.header {
    background-image: url("/img/header-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header .logo img {
    width: 52px;
    height: 52px;
    margin: 32px 0 16px 0;
}

.header .title {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 18px;
}

.tabs {
    height: 34px;
    margin-top: 19px;
    display: flex;
    align-items: center;
}

.tabs .tab {
    font-size: 16px;
    font-weight: bold;
    color: #323232;
    line-height: 16px;
}

.tab-indicator {
    width: 3px;
    height: 14px;
    background: #3B63B0;
    border-radius: 0 3px 3px 0;
    display: inline-block;
    margin-right: 13px;
}

.accounts {
    overflow: auto;
    width: 345px;
    height: calc(100vh - 213px - 30px - 1px);
    padding: 0px 0;
    margin: auto;
    border-top: 1px solid #DCDFE6;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 0px;
    grid-column-gap: 0px;
    justify-items: center;
}

.accounts .account-block {
    width: 105px;
    height: 120px;
    background: #F4F4F5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.accounts .account-block .account-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 10px;
}

.accounts .account-block .account-name {
    width: 84px;
    font-size: 14px;
    font-weight: 400;
    color: #323232;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

@media screen and (max-width: 345px) {
    .accounts {
        width: 100%;
    }

    .accounts .account-block {
        width: inherit;
    }
}

