.newMeat .AjaxCell .PrdImgM{
    width: 100%;
    display: flex; 
    overflow: hidden;
    height: 320px;
    background: black;
    transition: 0.4s;
    object-fit: cover;
}

.newMeat .AjaxCell .item:hover img {
    filter: brightness(0.7);
    transition: all ease-in 0.3s;
}


.newMeat .AjaxCell .item:hover .PrdContent .PrdTitle{
    opacity: 1;
    transition: all ease-in 0.3s;
}

.newMeat .AjaxCell .item:hover .PrdPrice, .newMeat .AjaxCell .item:hover .PrdPriceHint{
    opacity: 1;
    transition: all ease-in 0.3s;
}

.newMeat .AjaxCell .item:hover .quick {
    opacity: 0.8;
    background: white;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: fixed;
    height: 50px;
    transition: all ease-in 0.3s;
}



.newMeat .PrdContent .PrdTitle {
    transform: translateY(-230px);
    font-size: 1.5em;
    opacity: 0;
    text-align: center;
    color: white;
    font-weight: 500;
	 display:flex;
	 justify-content: center;
	 align-items: center;
	 height: 50px;
}

.newMeat .PrdPrice, .newMeat .PrdPriceHint {
    transform: translateY(-210px);
    font-size: 1em;
    opacity: 0;
    text-align: center;
    color: white; 
    font-weight: 500;
	 height: 50px;
	 display:flex;
	 justify-content: center;
	 align-items: center;
}

.newMeat .itemMsgList {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newMeat .itemMsgList .quick {
    opacity: 0;
    transform: translateY(40px);
}

