#app {
    width: 100%;
    position: relative;
    display: table;
}

.box {
    width: 25%;
    padding: 0 15px 25px 15px;
    float: left;
    margin-bottom: 30px;
}

.box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #535353;
    text-decoration: none;
}

.box a:hover {
    color: #e52d67;
}

.imgBox {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.6s linear;
}

.box:hover .imgBox {
    transform: scale(1.08);
}

/*
.imgBox img {
    width: 100%;
    height: 100%;
    transition: all 0.6s linear;
}
*/

.source {
    border: 1px solid #535353;
    padding: 6px 20px;
    border-radius: 25px;
    margin: 20px auto;
    font-size: 13px;
    height: 40px;
    overflow-y: hidden;
}

.title {
    margin-bottom: 20px;
    font-size: 20px;
}

.detail {
    font-size: 14px;
    line-height: 160%;
    text-align: justify;
    width: 100%;
}



/*
.box:hover img {
    transform: scale(1.15);
}
*/

.box:hover .source {
    background: #ef6d67;
    border-color: #ef6d67;
    color: #ffffff;
}

@media (max-width: 992px) {
    .box {
        width: 33%;
    }
}

@media (max-width: 768px) {
    .box {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .imgBox {
        height: 140px;
    }

    .box {
        padding: 0 8px 8px 8px;
    }
}
