

.query-fund-account-modal {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 100;
}
.query-fund-account-body {

    position: absolute;
    padding: 30px 30px 15px;
    left: 30vw;
    top: 20vh;
    width: 40vw;
    /* min-height: 60vh; */
    background: white;
    box-sizing: border-box;
    border-radius: 5px;
}

.fund-account-list {
    /* display: none; */
    margin-top: 15px;
    color: #333;
    font-size: 14px;
}

.fund-account-list span::after {
    content: "、"
}

.fund-account-list span:last-child::after {
    content: ""
}

a {
    cursor: pointer;
}