.yn_plate_109 {}


.yn_plate_109 .list-box {

    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.yn_plate_109 .item-box {
    width: 48%;
    aspect-ratio: 1/1;
}



.yn_plate_109 .item-box .item {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 40px;
}

.yn_plate_109 .item-box .img {
    width: 100%;
    height: 100%;
}

.yn_plate_109 .item-box .img img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.yn_plate_109 .item-box .content-box {
    position: absolute;
    width: 100%;
    height: 40px;

    top: -20px;
    /* left: 50px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.yn_plate_109 .name-box {
    text-align: center;
    margin: 8px 0;

    width: 140px;
    height: 100%;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 18px;
    font-weight: bold;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.yn_plate_109 .name-box.green {
    color: #2e8b57;
    background-color: #f0fff0;
    border: 1px solid #2e8b57;
}

.yn_plate_109 .name-box.red {
    color: #ff4500;
    background-color: #fff0f5;
    border: 1px solid #ff4500;
}

.yn_plate_109 .name-box.orange {
    color: #ff8c00;
    background-color: #fff8f0;
    border: 1px solid #ff8c00;
}

.yn_plate_109 .name-box.blue {
    color: #4682b4;
    background-color: #f0f8ff;
    border: 1px solid #4682b4;
}



@media (min-width:768px) {


    .yn_plate_109 .list-box {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;

    }

    .yn_plate_109 .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_109 .item-box:hover .name-box {
        text-decoration: underline;
    }


    .yn_plate_109 .item-box .item {
        margin-bottom: 0;
    }


}