*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
input,
select,
button{
    outline: none;
    border:none;
}
html,body{
    height: 100%;
    background-color: #F2F7FF;
}
.header{
    width: 100%;
    height: 100px;
    background-color: #0A3B66;
    display: flex;
    align-items: center;
}
.header .title{
    display: flex;
    width: 70%;
    min-width: 1200px;
    margin:0 auto;
    align-items: flex-end;
}
.body{
    width: 70%;
    min-width: 1200px;
    min-height: calc(100% - 100px);
    background-color: #fff;
    margin:0 auto;
    padding:20px;
}
.body .topOperation{
    height: 100px;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.body .topOperation .filter{
    width:250px;
    border:1px solid #eee;
    height: 30px;
    /* padding-left: 10px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px ;
    overflow: hidden;
    margin-right: 10px;
    padding:10px
}
.body .topOperation .filter input{
    width: 160px;
}
.body .topOperation .filter select{
    margin-left: 10px;
    margin-right: 10px;
    color:#999;
}
.body .topOperation button{
    width:60px;
    height: 30px;
    background-color: #116dfa;
    color: #fff;
    border-radius:  3px;
    cursor: pointer;
}
.body .topOperation button:hover{
    background-color: #1365e2;
}
.body .topOperation button:active{
    background-color: #1254ba;
}
.body table{
    width:100%;
    margin-top: 20px;
    border:0;
    text-align: center;
    box-shadow: 0px 0px 5px 1px #eee;
    /* padding:10px; */

}
.body table tr{
    height: 40px;
    font-size: 16px;
    font-weight: 400;
}
.body table thead td{
    text-align: center;
}
.body table thead tr{
    background-color: #0A3B66;
    color:#fff;
}
.body table tbody tr{
    font-size: 14px;
}
.body table tbody td {
    padding:10px;
}
.body .loading{
    text-align: center;
    color: #999;
    width: 100%;
    margin-top: 20px;
}
.footer{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A3B66;
    color: #fff;
}