/* ---------- 页面基本样式 ---------- */
html {
    background-color: #f0f0f0;
    height: 100%;
}

body {
    min-width: 100%;
    min-height: 0px;
    overflow: auto;
}

.main-view {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-width: 600px;
}

.column {
    /*margin: 10px;*/
    display: flex;
    flex-wrap: wrap;
}

.grid_block {
    background-color: #02a972;
    width: 130px;
    height: 130px;
    border-radius: 10px;
    padding: 10px;
    color: #ffffff;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
}
.grid_block .amount{
    font-size: 18px;
}
.hour {
    padding: 8px;
    background-color: rgba(0,0,0,0.2);font-size: 14px;
    border-radius: 5px;
    width: 65px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.grid_block img{
    width: 15px;
    height: 15px;
}
.grid_block .image{
    display: flex;
    align-items: center;
}
#myMenu{
    padding: 10px 0;
    background-color: #f2f2f2;
    width: 100px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow:0 1px 15px rgba(0,0,0,.3);
    border-radius: 6px;
}
#myMenu div{
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
#myMenu div:hover{
    background-color: #2db7f5;
    color: #ffffff;
}