* {
    box-sizing: border-box;
}
body, html{
    padding: 0;
    margin: 0;
    font-family: 微软雅黑;
}
#app{
    width: 100%;
}
.container{
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
}
.title, .box{
    text-align: center;
}
.title{
    
    display: flex;
    flex-flow: column;
    height: 100%;
}
.box{
    flex: 1;
    border: 1px solid #ccc;
}
.title-d{
    color: #0000ff;
    font-weight: 600;
}
.title-f{
    font-weight: 600;
    font-size: 13px;
    flex: 1;
    padding: 2px 0;
}
.box-d{
    color: white;
    font-weight: 600;
    padding: 2px 0;
}
.box-f{
    font-weight: 600;
    font-size: 12px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    
}
.refresh{
    text-align: -webkit-center;
    background-color: rgb(255, 255, 0);
    color: #FF3300;
    font-weight: 600;
    padding: 0 6px;
}
.green{
    background: rgb(0, 153, 0);
}
.blue{
    background: rgb(0, 0, 255);
}
.red {
    background: rgb(255, 0, 0);
}
.noc {
    width: 100%;
    height: 100%;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-color: #d4b6b6;
}
.title-e{
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    background: yellow;
    color: red;
    flex: 1;
    padding: 2px 5px;
}