.product_box {
    width: 100%;
    padding-bottom: calc(4px + 3rem);
}

.product {
    max-width: 1640px;
    width: 85%;
    margin: auto;
}

.product_list{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(31px + 5rem);
margin-top: calc(63px + 5rem);

}
.product_item {
    width: 100%;
    height: calc(40px + 10rem);
    background: #F2F2F2;
}

.product_item a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.product_item_pic {
    width: calc(32px + 20rem);
    height: calc(67px + 10rem);
    position: relative;
    bottom: calc(10px + 2rem);
    left: calc(29px + 5rem);
}

.product_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_more {
    width: calc(28px + 5rem);
    height: calc(28px + 5rem);
    background: #D8D8D8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: calc(47px + 20rem);
    transition: .3s;
}
.product_more img{
    width: calc(10px + 1.5rem);
}

.product_item .p1{
font-family: D_DIN_PRO_Bold;
font-weight: 700;
font-size: calc(6px + 1.5rem);
color: #222222;
line-height: calc(20px + 3rem);
text-align: left;
margin-left: calc(65px + 10rem);
margin-bottom: calc(13px + 2rem);
}

.product_item:hover .product_more{
    background-color: #E20100;
}

@media (max-width: 1100px){
    .product_item .p1{
        margin-left: calc(10px + 4rem);
        line-height: 1.5;
        font-size: calc(12px + 1rem);
    }
    .product_item_pic {
        width: calc(32px + 34rem);
        height: calc(67px + 10rem);
        position: relative;
        bottom: calc(10px + 2rem);
        left: calc(10px + 1rem);
    }
    .product_more{
        display: none;
    }
  
}