﻿.card {
   display:flex;
   flex-direction:column;
   justify-content:space-between;
}

.card-panel{
    border:1px solid #337AB7;
    border-radius:5px;
    display:flex;
    flex-direction:column;
    height:130px;
    cursor:pointer;
}

.card-panel .top {
    flex:1;
    background-color:#337AB7;
    display:flex;
}

.card-panel .top .c-left{
    flex:0 0 120px;
    text-align:center;
    line-height:90px;
    color:#fff;
    font-size:70px;
}

.card-panel .top .c-right{
    flex:1;
}

.card-panel .top .c-right span{
    display:block;
    color:#fff;
    text-align:right;
    padding-right:20px;
}

.card-panel .top .c-right span.number{
    padding-top:10px;
    font-size:40px;
    height:40px;
    line-height:40px;
    font-weight:bold;
}

.card-panel .top .c-right span.tips{
    margin-top:10px;
}

.card-panel .bottom {
    flex:0 0 40px;
    display:flex;
    justify-content:space-between;
    color:#337AB7;
}

.card-panel .bottom .c-left{
    line-height:40px;
    font-size:14px;
    font-weight:bold;
    text-align:center;
    flex:0 0 90px;
    font-family: "Microsoft YaHei","微软雅黑","黑体",Arial, Helvetica,sans-serif;
}

.card-panel .bottom .c-right{
    line-height:40px;
    font-size:20px;    
    font-weight:bold;
    text-align:center;
    flex:0 0 90px;
    font-family: "Microsoft YaHei","微软雅黑","黑体",Arial, Helvetica,sans-serif;
}



