.content-box{
    max-width: 1200px;
    margin: 0 auto;
}
.content-box .item-box-warp{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}
.content-box .item-box-warp .item-box{
    width: 210px;
    border: 1px solid #eee;
    margin-bottom: 35px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 5%);
    transition: transform .5s;
}
.content-box .item-box-warp .item-box:hover{
    transform: scale(1.05);
}
.content-box .item-box-warp .item-box.placeholder{
    height: 0;
    widows: 0;
    visibility: hidden;
}
.content-box .item-box-warp .item-box .title{
    font-size: 15px;
    font-weight: normal;
}
.content-box .item-box-warp .item-box img{
    height: 117.2px;
    object-fit: cover;
}
