.app_main {
    justify-content: space-between;
    flex-wrap: wrap;
}

.app_div {
    width: 48.4%;
    margin-bottom: 30px;
}

.app_div .imgBox {
    padding-bottom: 60%;
    border-radius: 6px;
}

.app_div_bottom {
    margin-top: -30px;
    position: relative;
    z-index: 1;
    width: 90%;
    background: #FFFFFF;
    padding: 45px 25px;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.08);
    border-radius: 12px 12px 12px 12px;
}

.app_div_title {
    font-family: Delecta-Bold, Delecta-Bold;
    font-weight: normal;
    font-size: 32px;
    color: #FFAD2B;
    position: relative;
    line-height: 1.5em;
    height: calc(1.5em + 10px);
    overflow: hidden;
    padding-bottom: 10px;
    display: block;
}

.app_div_title::after {
    content: '';
    display: inline-block;
    width: 82px;
    height: 3px;
    background: #FFAD2B;
    border-radius: 9px 9px 9px 9px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.app_div_title:hover::after {
    width: 100%;
}

.app_div_bottom .rec_desc {
    line-height: 1.8em;
    height: 3.6em;
    overflow: hidden;
}

@media only screen and (max-width: 950px) {
    .app_div{
        width: 100%;
    }

    .app_div_bottom{
        padding: 25px;
    }

    .app_div_title{
        font-size: 26px;
    }
}