.deals-list {
    margin: 0 -7.5px;
}
.deals-list .item {
    width: 25%;
    padding: 0 10px;
}
.deals-list .item:nth-child(4n+1) {
    clear: left;
}
.deals-list .box {
    margin: 0 auto 40px;
    max-width: 260px;
    position: relative;
}
.deals-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
    display: block!important;
}

.deals-list .box .pic{
    position: relative;
    overflow: hidden;
}
.deals-list .box .pic-box{
    position: relative; 
}
.deals-list .box .pic:before{
    content: '';
    position: absolute; 
    left: 0;    
    top: 0; 
    right:  0;
    bottom: 0;
    background: url(../../images/common/deals/hover.png);
    background-size: cover;
    transition:all ease .3s;
    opacity: 0;
    z-index: 5;
}
.deals-list .box:hover .pic:before{
    opacity: 1;
}

.deals-list .box .pic img{
    display: block;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    width: 100%;
}
.deals-list .box:hover .pic img{
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.deals-list .box .name{
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}
.deals-list .box .description{
   font-family: 'Inter', sans-serif;
   color: #888888;
   font-size: 13px;
   position: relative;
   line-height: 1.5;
   margin-bottom: 20px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
   height: 42px;
}
.deals-list .box .post {
    margin-bottom: 10px;
    font-size: 13px;
    color: #878787;
    font-family: 'Inter', sans-serif;
}
.deals-list .bottom{
    display: flex;
    justify-content: space-between;
}
.deals-list .box_btn{
     line-height: 30px;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #fff;
    transition: all ease .3s;
    display: block;
    width: 49%;
    text-align: center;
    letter-spacing: 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.deals-list .box_btn.btn2 {
    background: #333;
    color: #fff;
}
.deals-list .box_btn.btn2:hover{
     background: #c50000;
}
.deals-list .box_btn:hover {
    background: #338cde;
    color:#fff;
}

@media screen and (max-width: 1260px) {
    .deals-list .item {
        width: 33.33%;
    }
    .deals-list .item:nth-child(n) {
        clear: none;
    }
    .deals-list .item:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 1000px) {
    .deals-list .item {
        width: 50%;
    }
    .deals-list .item:nth-child(n) {
        clear: none;
    }
    .deals-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 600px) {
    .deals-list .item {
        width: 100%;
    }
    .deals-list .item:nth-child(n) {
        clear: none;
    }
}