.yn_plate_104 {}

.yn_plate_104 .list-box {}

.yn_plate_104 .item-box {
    width: 100%;
    background-color: var(--yn-grey-bg);
    padding-bottom: 16px;
    margin-bottom: 10px;
}

.yn_plate_104 .img-box {
    width: 100%;
    height: calc(100vw * 0.63);
}

.yn_plate_104 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.yn_plate_104 .content-box {
    padding: 6px 10px 16px 10px;
}

.yn_plate_104 .name-box {}

.yn_plate_104 .name-box a {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.yn_plate_104 .tag-box{

    color: #606266bf;
    font-size: 13px;
}

.yn_plate_104 .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)
}

.yn_plate_104 .oper-box {
    margin: 0 10px;
}

.yn_plate_104 .oper-box .oper-btn {
    background-color: var(--yn-form-submit-bg-color);
    padding: 6px 12px;
    border-radius: 6px;

    width: max-content;
}

.yn_plate_104 .oper-box .oper-btn {
    color: var(--yn-form-submit-color);
    font-weight: 600;
    font-size: 14px;
}



@media (min-width:768px) {

    .yn_plate_104 .list-box {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;

    }

    .yn_plate_104 .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;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .yn_plate_104 .img-box {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: 190px;
        min-height: 190px;
        max-height: 190px;

    }

    .yn_plate_104 .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
    }

    .yn_plate_104 .content-box {
        width: auto;
    }

    .yn_plate_104 .name-box {
        margin-top: 0;
    }

    .yn_plate_104 .name-box:hover a {
        text-decoration: underline;
        color: var(--yn-form-submit-hover-bg-color);
    }

    .yn_plate_104 .summary-box {
        -webkit-line-clamp: 4;
    }

    .yn_plate_104 .oper-box .oper-btn:hover {
        background-color: var(--yn-form-submit-hover-bg-color);
        color: var(--yn-form-submit-hover-color);
    }
}