.yn_plate_105 {}

.yn_plate_105 .list-box {}

.yn_plate_105 .item-box {
    width: 100%;
    background-color: var(--yn-grey-bg);
    border-radius: 20px;
    margin-bottom: 10px;
}

.yn_plate_105 .img-box {
    width: 100%;
    height: calc(100vw * 0.63);

}

.yn_plate_105 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 48% 48%;
}

.yn_plate_105 .content-box {
    padding: 6px 10px 6px 10px;
}

.yn_plate_105 .name-box {
    text-align: center;
    margin: 10px 0 10px 0;
}

.yn_plate_105 .name-box a {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.yn_plate_105 .summary-box {
    font-size: 14px;
    margin: 10px 0;

    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_105 .list-box {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;

    }

    .yn_plate_105 .item-box {
        flex: 1 1 calc(25% - 10px);
        width: calc(25% - 10px);
        min-width: calc(25% - 10px);
        max-width: calc(25% - 10px);
        margin-bottom: 0;
    }

    .yn_plate_105 .img-box {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: 190px;
        min-height: 190px;
        max-height: 190px;

        border-radius: 20px 20px 48% 48%;

    }

    .yn_plate_105 .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .yn_plate_105 .content-box {
        width: auto;
    }

    .yn_plate_105 .name-box {
        margin-top: 0;
    }

    .yn_plate_105 .name-box:hover a {
        text-decoration: underline;
        color: var(--yn-form-submit-hover-bg-color);
    }

    .yn_plate_105 .summary-box {
        -webkit-line-clamp: 4;
        text-align: center;
    }

    .yn_plate_105 .fg-box {
        display: flex;
        justify-content: center;
    }

    .yn_plate_105 .fg {
        padding-left: 1px;
        width: 40px;
        border-top: 1px solid #000;
    }
}