.yn_plate_111 {}

.yn_plate_111 .list-box {}

.yn_plate_111 .item-box {
    display: flex;
    flex-direction: row;
}

.yn_plate_111 .img-box {
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.yn_plate_111 .img-box img {
    width: 16px;
    height: 16px;
}

.yn_plate_111 .content-box {
    padding: 6px 10px 6px 10px;
}

.yn_plate_111 .item-box {
    margin: 10px 0 ;
}

.yn_plate_111 .item-box a {

    text-align: left;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--yn-black-main);
    margin: 0 0 0 10px;

    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);
}


@media (min-width:768px) {

    .yn_plate_111 .list-box {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;

    }

    .yn_plate_111 .item-box {
        flex: 1 1 calc(50% - 10px);
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        margin-bottom: 0;
    }

    .yn_plate_111 .name-box {
        margin-top: 0;
    }

    .yn_plate_111 .name-box:hover a {
        text-decoration: underline;
        color: var(--yn-form-submit-hover-bg-color);
    }

}