html, body {
    margin: 0;
    padding: 0;
}

#app {
    height: 100vh;
    box-sizing: border-box;
}

.login {
    width: 350px;
    margin: auto;
    background: rgba(255, 255, 255, 0.75);
    padding: 32px 22px 10px;
    position: relative;
    top: 25%;
    border-radius: 8px;
}

.el-header {
    line-height: 40px;
    display: flex;
    justify-content: space-between;
}

.el-header span {
    font-size: 14px;
    color: gray;
    margin-right: 10px;
}

.el-main {
    background: #eeeeee;
    padding: 0;
    overflow: hidden;
}

iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

#box {
    padding: 1em;
}

.box-header {
    margin-bottom: 1em;
    display: flex;
    justify-content: space-between;
}

.el-pagination {
    margin-top: 1em;
    text-align: center;
}

.el-table td {
    padding: 4px 0;
}

.el-table .warning-row {
    background: #fdf5e6;
}

.el-table .success-row {
    background: #f0f9eb;
}

.el-table .danger-row {
    background: #f9eeeb;
}

.big-icon {
    font-size: 20px;
    cursor: pointer;
    margin-right: 10px;
}

.item-box {
    background: white;
    border: 1px solid #EBEEF5;
    padding: 1em;
}

.item-box + .item-box {
    margin-top: 1em;
}

.count-item {
    padding: 2em;
    border: 1px solid #EBEEF5;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.count-item + .count-item {
    margin-top: 1em;
}

.count-item i {
    font-size: 6em;
    color: rgba(255, 255, 255, .5);
}

.count-item div {
    text-align: center;
}
.count-item span {
    display: block;
}

.count-item b {
    font-size: 4em;
}

.count-item.total {
    background: blueviolet;
}
.count-item.traded {
    background: #16ad20;
}
.count-item.unsettled {
    background: brown;
}
.count-item.year {
    background: #a59f2a;
}
.count-item.month {
    background: #2aa5a5;
}
.count-item.week {
    background: #8e2aa5;
}