.yn_plate_100 {}

.yn_plate_100 .list-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.yn_plate_100 .item-box {
    width: 48%;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.yn_plate_100 .img-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
    overflow: hidden;

}

.yn_plate_100 .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;

    transition: transform 0.5s ease;
}

.yn_plate_100 .img-box img:hover {
    transform: scale(1.1);
}

.yn_plate_100 .name-box {
    margin-bottom: 10px;
    margin-top: 10px;
}

.yn_plate_100 .name-box a {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.yn_plate_100 .summary-box {
    font-size: 14px;
    color: #444;

    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

@media (min-width:768px) {
    .yn_plate_100 .item-box {
        display: flex;
    }

    .yn_plate_100 .img-box {
        position: unset;
        min-width: 190px;
        max-width: 190px;
        width: 190px;
        height: 190px;
        padding-top: 0;
        overflow: hidden;
    }

    .yn_plate_100 .img-box img {
        position: unset;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    .yn_plate_100 .content-box {
        width: auto;
        margin-left: 10px;
    }

    .yn_plate_100 .name-box {
        margin-top: 0;
    }

    .yn_plate_100 .name-box:hover a {
        text-decoration: underline;
        color: var(--yn-form-submit-hover-bg-color);
    }

    .yn_plate_100 .summary-box {
        -webkit-line-clamp: 4;
    }
}