.yn_plate_101 {
    background-color: var(--yn-grey-bg);
}

.yn_plate_101 .body{
    padding: 10px 10px;
}

.yn_plate_101 .list-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.yn_plate_101 .item-box {
    
    display: flex;
    justify-content: space-between;

    background-color: #fff;
    box-shadow: 0 5px 6.65px .35px rgba(164, 164, 164, .19);
    width: 48%;
    border-radius: 4px;
    margin: 0 0 10px 0 ;
}

.yn_plate_101 .left .img-box {
    
    height: 56px;
    max-width: 56px;
    min-width: 56px;
}

.yn_plate_101 .left .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.yn_plate_101 .left .img-box img:hover {
    transform: scale(1.1);
}

.yn_plate_101 .left .name-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
}

.yn_plate_101 .left .name-box a {
    font-size: 14px;
    font-weight: 500;

    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    -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)
}

.yn_plate_101 .right .img-box {
    width: 100%;
    height: 100%;

}

.yn_plate_101 .right .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

@media (min-width:768px) {


    .yn_plate_101 .body {
        display: flex;
        justify-content: space-between;
    }

    .yn_plate_101 .left {
        width: 48%;
    }

    .yn_plate_101 .right {
        width: 48%;
        margin-top: 40px;
    }

    .yn_plate_101 .right .img-box {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 380px;
    }

    .yn_plate_101 .right .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    .yn_plate_101 .item-box {
        display: flex;
        justify-content: flex-start;
        width: 33%;
    }


    .yn_plate_101 .left .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    .yn_plate_101 .left .content-box {
        width: auto;
        margin-left: 10px;
    }

    .yn_plate_101 .left .name-box {
        margin-top: 0;
    }

    .yn_plate_101 .left .name-box:hover a {
        text-decoration: underline;
        color: var(--yn-form-submit-hover-bg-color);
    }

}