@charset "utf-8";
/**
 * Created by henian.xu on 2019/1/23.
 *
 */

.small-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    > .img-obj {
        flex: 0 0 auto;
    }
    > .icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100px;
        min-height: 100px;
        > .f-icon {
            font-size: 46px;
            line-height: 1;
        }
        > .label {
            font-size: 20px;
        }
    }
    > .body {
        flex: 1 1 1%;
        padding: $padding-small;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
    }
}
