﻿.ts_small_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    width: 280px;
    height: 120px;
    border-radius: 5px;
    box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
    margin-bottom: 10px;
    margin-right: 10px;
}

.ts_small_box > .inner {
    padding: 10px
}

.ts_small_box > .inner > .title {
    font-size: 24px;
    font-weight: bold;
}

.ts_small_box > .end {
    height: 30px;
    background-color: rgba(0,0,0,0.2);
    padding-left: 10px;
    line-height: 30px;
    position: relative;
    margin-bottom: 0px
}

.ts_small_box.ts_small_box_red {
    background-color: red;
}

.ts_small_box.ts_small_box_normal {
    background-color: #FF5722;
    color: #fff
}

